blob: fa36c62fcbeb71e7ada59e6f97f4156dcf681ee5 [file] [log] [blame]
protected static def getGeneratedFileNames() {
def foo = 0
while (cond) {
<begin> println(foo)
foo = ""
<end> }
int t = foo
}
-----
protected static def getGeneratedFileNames() {
def foo = 0
while (cond) {
foo = <caret>testMethod(foo)
}
int t = foo
}
private static String testMethod(Serializable foo) {
println(foo)
foo = ""
return foo
}