blob: e7d2ad5c8b2818c5f84ad8d568efa12e3bebf37f [file] [log] [blame]
def a() {
<selection>call()</selection>
}
def call() {
print "in call"
}
a()
-----
def a() {
{ ->
owner.call()
}.call()
}
def call() {
print "in call"
}
a()