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
Follow-up to #770.
Consider the following Groovy classes:
package test46 class Base { Base(String foo, int bar) {} }
package test46 class Ext extends Base { Ext(String foo, int bar) { super(| } }
Invoke code assist at "|": no suggestion is given.
Also consider this variant:
package test46 class Ext2 extends Base { Ext2(String foo, int bar) { super(foo, bar) } Ext2() { this(| } }
Note: they are given if there's a trailing closed parenthesis ")".
The text was updated successfully, but these errors were encountered:
Fix for #789: add recovery for this/super ctor call w/o closing paren
9c91a43
Ready to test
Sorry, something went wrong.
I confirm it works in 3.3.0.xx-201901180207-e49, thank you! 👍
eric-milles
No branches or pull requests
Follow-up to #770.
Consider the following Groovy classes:
Invoke code assist at "|": no suggestion is given.
Also consider this variant:
Invoke code assist at "|": no suggestion is given.
Note: they are given if there's a trailing closed parenthesis ")".
The text was updated successfully, but these errors were encountered: