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:
class C { String foo void setFoo(String foo) { this.foo = foo } } @groovy.transform.CompileStatic class D { void meth(C c) { c.foo += 'x' c.with { foo += 'y' } } }
"c.foo += 'x'" infers as "setFoo" whereas "foo += 'y'" infers as "getFoo" (if it exists) or just property "foo".
The text was updated successfully, but these errors were encountered:
Sorry, something went wrong.
Fix for #1015: remove offsets from duplicated AST in binary expressions
f690a24
eric-milles
No branches or pull requests
Consider the following:
"c.foo += 'x'" infers as "setFoo" whereas "foo += 'y'" infers as "getFoo" (if it exists) or just property "foo".
The text was updated successfully, but these errors were encountered: