Details
-
Type:
Bug
-
Status:
Resolved
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 2.5.1Release
-
Fix Version/s: 2.6.0.Release
-
Component/s: Content Assist
-
Labels:None
-
Environment:Eclipse 3.7
-
Number of attachments :
Description
The following will not suggest foo:
(1..10).each {
// foo() not suggested
}
def foo() {
}
however, this will:
def bar = {
// foo() suggested
}
def foo() {
}