We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Right now, if you use a metatarget for MirrorsUsed:
@MirrorsUsed(metaTarget: 'X') import 'dart:mirrors';
it doesn't apply to things annotated with the X type, but only things annotated with an instance of X. So in this case:
@X foo() { ... }
@X() bar() { ... }
we only consider the bar function as being "hit" by the metatarget specification. Maybe we should reconsider that.
The text was updated successfully, but these errors were encountered:
This comment was originally written by @seaneagan
looks like another symptom of issue #13582
Sorry, something went wrong.
Status:Invalid given issue #14647?
Yeah, this is invalid (for now). Thanks for noticing, Sean!
Added Invalid label.
No branches or pull requests
Right now, if you use a metatarget for MirrorsUsed:
@MirrorsUsed(metaTarget: 'X')
import 'dart:mirrors';
it doesn't apply to things annotated with the X type, but only things annotated with an instance of X. So in this case:
@X
foo() { ... }
@X()
bar() { ... }
we only consider the bar function as being "hit" by the metatarget specification. Maybe we should reconsider that.
The text was updated successfully, but these errors were encountered: