Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
1.7.4
-
None
-
None
Description
The Groovy EMC DSL breaks for method names within the Closure class:
def o = new Object() o.metaClass { foo { 'foo' } curry { 'curry' } rcurry { 'rcurry' } } println o.foo() //println o.curry() // MissingMethodException //println o.rcurry() // MissingMethodException