blob: 33009331cc1688efb29335df7e4392e5c6ad4980 [file] [log] [blame]
def foo() {
<begin>[].collect { it }<end>
}
-----
def foo() {
testMethod()
}
private List testMethod() {
return [].collect { it }
}