-
Notifications
You must be signed in to change notification settings - Fork 194
New issue
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
Missing code assist in method invocation when no closing bracket present #292
Comments
The There is error recovery for
|
Can you retest with the latest snapshot? |
Sorry, I had no time today, but I will certainly do on Monday! Thanks again and have a nice weekend! |
Hi Eric, I tested this with some basic use cases (included the one reported here) and it seems to work perfectly fine, thank you! :-) |
This was the old GRECLIPSE-1796.
Consider the following code:
Let "|" be the cursor position and invoke code assist there. Please note the missing closing bracket for
assertNull(Object)
method invocation, which is a common situation while you're typing some new code.As you can see, in this case no relevant suggestions are given by code assist (only some obscure - for me at least - get@ and set@ proposals are shown). I think this is related to the editor resilience to typing errors (the code is not valid Groovy code until you close the unpaired bracket), however, as I said, this situation is quite common when you're typing some new code. JDT for Java code works well in this situation, in fact.
The text was updated successfully, but these errors were encountered: