blob: 76d9bc113ba82ea1fe343d44ea4585744d983f11 [file] [log] [blame]
def foo(b, c) {
<begin>[].each {
b.plus(c)
}<end>
}
-----
def foo(b, c) {
testMethod(b, c)
}
private ArrayList testMethod(b, c) {
return [].each {
b.plus(c)
}
}