-
Notifications
You must be signed in to change notification settings - Fork 193
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
Method not recognized when invoked from an anonymous inner class #378
Comments
ready to test |
With 2.9.2.xx-201711100505-e46 this works partially. If you use the use case I provided, now, the You can see this by trying to refactor |
They're not underlined at least. ;) |
Actually, the local variable assignment case is not type inferencing / semantic highlighting any part of the anon. inner definition. This is what all anon. inners used to be like. |
Could you open a separate issue for the 2 anon. inners causing the second to be unprocessed? |
Sorry, I think I didn't understand :-( |
Consider the following Groovy class:
What I see is that
m()
call from the definition ofA.p
field (with an inner class) is underlined.Instead
m()
call from the definition ofwhatever
local variable is not underlined, by nevertheless it seems like the call is not recognized (F2 and F3 do not work).Funny enough, if you comment out the p field definition, then the second call to
m()
becomes underlined :-)The text was updated successfully, but these errors were encountered: