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
The last annotation wins. This should either be a compiler error or both annotations should be present. Probably the forma.
struct Survey { @UIElement { "elemType" : "Radio" } YNRating rating; }; annotation LoginScreen::rating UIElement { "elemType" : "Button" } ;
Different syntax same result.
struct Survey { @UIElement { "elemType" : "Radio" } @UIElement { "elemType" : "Button" } YNRating rating; };
The text was updated successfully, but these errors were encountered:
The intention of annotations is that they can be queried by type. So it doesn't make sense for both to be present.
I'm open to it being an error, rather than "last anotation wins".
Sorry, something went wrong.
No branches or pull requests
The last annotation wins.
This should either be a compiler error or both annotations should be present.
Probably the forma.
Different syntax same result.
The text was updated successfully, but these errors were encountered: