blob: 02832184e3c37cacd113f3ad9db72cac545d2553 [file] [log] [blame]
def getGeneratedFileNames() {
if (true) {
return <selection>QQQ.test</selection>()
}
else 42
}
class QQQ {
static def test() {
foo = 42;
boo()
boo1()
def qual = 48
println(foo)
return foo
}
def f = this
static void boo() {
println "aaa"
}
void boo1() {
println "aaa"
}
}
-----
def getGeneratedFileNames() {
if (true) {
foo = 42
QQQ.boo()
QQQ.boo1()
def qual = 48
println(foo)
return foo
}
else 42
}
class QQQ {
static def test() {
foo = 42;
boo()
boo1()
def qual = 48
println(foo)
return foo
}
def f = this
static void boo() {
println "aaa"
}
void boo1() {
println "aaa"
}
}