简体   繁体   中英

Reading metadata in a Haxe macro

I would like to know how to read metadata from a class (and its methods) in a macro.

I tried to modify this example . I added : to see if metadata without them is only available in generated code, but nothing.. I have an empty result in all three cases.. Any ideas?

@:author("Nicolas")
@debug
class MyClass {
    @:range(1, 8)
    var value:Int;

    @broken
    @:noCompletion
    static function method() { }
}

class Boot {
    static public function main() {
        test();
    }

    macro public static function test() {
        trace(haxe.rtti.Meta.getType(MyClass)); // { author : ["Nicolas"], debug : null }
        trace(haxe.rtti.Meta.getFields(MyClass).value.range); // [1,8]
        trace(haxe.rtti.Meta.getStatics(MyClass).method); // { broken: null }
        return haxe.macro.Context.makeExpr({}, haxe.macro.Context.currentPos());
    }
}

In order to access the types from a macro, you need to use the haxe.macro.* API rather than accessing haxe.rtti . The following example will trace both debug and author , which are the metadata applied to MyClass :

class Boot
{
  macro public static function test()
  {
    switch (haxe.macro.Context.getType("MyClass"))
    {
      case TInst(cl,_):
        trace(cl.get().meta.get());
      case _:
    }
  }
}

In order to get class field metadata, you must go through all fields from cl.get().fields.get() .

See Context.getType() , ClassType and MetaAccess .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM