How to pass the groovy binding to the child scripts, for example from Groovy script A i have to pass the binding Groovy Script B ?
Level1.groovy
new Level2().run()
level2.groovy
new Level3().run()
level3.groovy
if (binding) {
}
if i set some binding in level1.groovy how can i access in level3.groovy
1 Answer