blob: 417e76eebf7e639e0ceea5eecf1f2b37f3a74811 [file] [log] [blame]
def foo(p) {
bar(p, p)
}
<selection>foo</selection>(new Object())
-----
def foo(p) {
bar(p, p)
}
def p = new Object()
bar(p, p)