Made imports and using expressions to use CoreApi redefinitions.

This commit is contained in:
Eugene Griskov
2015-05-19 17:22:23 +01:00
parent 1a404103ca
commit f4bf23a66b
3 changed files with 3 additions and 3 deletions

View File

@@ -14,7 +14,7 @@ using StringTools;
using tink.macro.Positions;
using tink.macro.Exprs;
using tink.macro.Types;
using tink.core.Outcome;
using tink.CoreApi;
typedef VarDecl = { name : String, type : ComplexType, expr : Null<Expr> };
typedef ParamSubst = {

View File

@@ -10,7 +10,7 @@ import haxe.macro.Type;
using tink.macro.Exprs;
using tink.macro.Positions;
using tink.macro.Functions;
using tink.core.Outcome;
using tink.CoreApi;
class Types {
static var types = new Map<Int,Void->Type>();