Details
-
Type:
Bug
-
Status:
Resolved
-
Priority:
Major
-
Resolution: Not A Bug
-
Affects Version/s: 2.5.2.Release
-
Fix Version/s: 2.6.0.Release
-
Component/s: Parser
-
Labels:None
-
Number of attachments :
Description
Follow on from GRECLIPSE 1192 related to trailing commas. Here there is no suggestion of 'param' proposed:
class Bar {
def param = 4
def m() {
foo('abc',<Ctrl+Space>
}
}
This is expected behavior. When invoking content assist at this location, you should only see method context proposals. These are the proposals that show the information about the method call you are in. (Also, named argument proposals would be available, but there are none at this location.)
You need a non-0 lengthed prefix in order to get any other kinds of proposals.
This is following the behavior of JDT content assist.