You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
DSLD support was added for NamedVariant, etc. on methods. Support for the same on constructors needs to be added.
Consider the following:
importgroovy.transform.NamedVariantclassColor {
int r, g, b
@NamedVariantColor(intr, intg, intb) {
this.r = r
this.g = g
this.b = b
}
}
def color =newColor(r: 0, |)
Content assist at | should include proposals for "b : __ - int named parameter of Color" and "g : __ - int named parameter of Color".
The text was updated successfully, but these errors were encountered:
DSLD support was added for NamedVariant, etc. on methods. Support for the same on constructors needs to be added.
Consider the following:
Content assist at
|
should include proposals for "b : __ - int named parameter of Color" and "g : __ - int named parameter of Color".The text was updated successfully, but these errors were encountered: