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
Consider the following:
import groovy.transform.* class Color { int r, g, b } @NamedVariant def m(Color c) { ... } m(|) ^ Ctrl-Space gives proposals for "r: __", "g: __", "b: __" and "meth(Map namedArgs)"
And also:
import groovy.transform.* @NamedVariant def m(@NamedParam('dob') Date date) { ... } m(|) ^ proposals for "dob: __" but not "date: __"
The text was updated successfully, but these errors were encountered:
Add content assist for @NamedVariant, et al.
94c92d5
#604
Fix reference to missing static method
7d41f8f
f3e4493
GROOVY-8627
dd19dda
Add content assist for @NamedParams
c7365c7
#604 #645
eric-milles
No branches or pull requests
Consider the following:
And also:
The text was updated successfully, but these errors were encountered: