-
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
Wrong code assist order in method call completion #287
Comments
eric-milles
added a commit
that referenced
this issue
May 7, 2017
NOTE: This is limited to assign of property or variable expressions.
Can you retest? This should be fixed. |
|
The type of the parameter is not known at the time of the completion. Only assignments are tracked for this kind of preference. There would need to be an enhancement for it all to come together.
|
Ok, so I will open another ticket for that. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
From the old GRECLIPSE-1800
Consider the following:
When invoking code assist at | Greclipse is curently suggesting
c.C.AnotherClass.createInt()
beforec.C.AnotherClass.createString()
, I suspect following an alphabetical criteria, but I would expect the latter one to be proposed first, sincec.C.MyBean.foo
is of type String.The same applies with the following alternative invocation:
The text was updated successfully, but these errors were encountered: