blob: 6a2a6281f45a2fca0f77042fb4ba09fe0914437f [file] [log] [blame]
def foo(int x) {
return "foo(x = $x)";
}
print "foo(2) = ${<selection>foo</selection>(2)}";
-----
def foo(int x) {
return "foo(x = $x)";
}
print "foo(2) = foo(x = 2)";