Tagged Questions

0
votes
2answers
239 views

Passing delegate through nested closures in Groovy

I am creating a builder which accepts Groovy closures as markup. However I am having trouble catching method calls with nested closures. Closure nested = { foo () //will throw missingMethod ...
0
votes
1answer
177 views

How to add a new closure to a class in groovy

From Snipplr Ok here is the script code, in the comments is the question and the exception thrown class Class1 { def closure = { println this.class.name println ...
0
votes
1answer
2k views

Groovy expando metaclass

I've developed a Class that has some methods that augment Integer, it mainly lets me do this: def total = 100.dollars + 50.euros Now I have to extend Integer.metaClass doing something like this: ...