-
Type:
Bug
-
Resolution: Unresolved
-
Priority:
Critical
-
Component/s: groovy-plugin
groovy.lang.MissingPropertyException: No such property: node for class: Test
Possible solutions: node
is thrown by
class Test extends Closure {    def node    Test() {        super(null)    }    def doCall() {        node += "world"    } } node('master') {    stage("1") {        new Test(node: "hello")()    } }