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