|
@@ -601,6 +601,20 @@ class Context {
|
|
return load("follow_with_abstracts", 2)(t, once);
|
|
return load("follow_with_abstracts", 2)(t, once);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ TODO documentation
|
|
|
|
+
|
|
|
|
+ See `haxe.macro.TypeTools.followLazy` for details.
|
|
|
|
+
|
|
|
|
+ Usage of this function from initialization macros is deprecated and may
|
|
|
|
+ cause compilation server issues. Use `Context.onAfterInitMacros` to
|
|
|
|
+ run your code once typer is ready to be used.
|
|
|
|
+ **/
|
|
|
|
+ public static function followLazy(t:Type):Type {
|
|
|
|
+ assertInitMacrosDone();
|
|
|
|
+ return load("follow_lazy", 1)(t);
|
|
|
|
+ }
|
|
|
|
+
|
|
/**
|
|
/**
|
|
Returns the information stored in `Position` `p`.
|
|
Returns the information stored in `Position` `p`.
|
|
**/
|
|
**/
|