9.3.1 Expression Reification
Expression reification is used to create instances of haxe.macro.Expr in a convenient way. The Haxe Compiler accepts the usual Haxe syntax and translates it to an expression object. It supports several escaping mechanisms, all of which are triggered by the $ character:
${}and$e{}:Expr -> ExprThis can be used to compose expressions. The expression within the delimiting{ }is executed, with its value being used in place.$a{}:Expr -> Array<Expr>If used in a place where anArray<Expr>is expected (e.g. call arguments, block elements),$a{}treats its value as that array. Otherwise it generates an array declaration.$b{}:Array<Expr> -> ExprGenerates a block expression from the given expression array.$i{}:String -> ExprGenerates an identifier from the given string.$p{}:Array<String> -> ExprGenerates a field expression from the given string array.$v{}:Dynamic -> ExprGenerates an expression depending on the type of its argument. This is only guaranteed to work for basic types and enum instances.
Additionally the metadata @:pos(p) can be used to map the position of the annotated expression to p instead of the place it is reified at.
This kind of reification only works in places where the internal structure expects an expression. This disallows object.${fieldName}, but object.$fieldName works. This is true for all places where the internal structure expects a string:
- field access
object.$name - variable name
var $name = 1;
since Haxe 3.1.0
- field name
{ $name: 1} - function name
function $name() { } - catch variable name
try e() catch($name:Dynamic) { }
Furthermore, a new expression can be reified by providing haxe.macro.TypePath argument: new $typePath()