有没有办法使用Smoke在类上获取注释?

时间:2014-09-21 13:28:41

标签: dart dart-mirrors

有没有办法使用Smoke获取类的注释?

class Anno {
 const Anno();
}

@Anno
class A {
}

void main() {
  var a = new A();
  // how to get the annotation `@Anno` from `a` using the Smoke library
  someMethod(A);
}

var someMethod(Type t) {
  // get the annotation `@Anno` from `t` using the Smoke library
}

1 个答案:

答案 0 :(得分:1)

目前没有任何支持在Smoke中阅读注释:(

您可以在dartbug.com提出问题,但我不知道Polymer团队是否会添加Polymer不需要的功能(my case没有任何有用的响应):(