有没有办法使用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
}
答案 0 :(得分:1)
目前没有任何支持在Smoke中阅读注释:(
您可以在dartbug.com提出问题,但我不知道Polymer团队是否会添加Polymer不需要的功能(my case没有任何有用的响应):(