Details
-
Improvement
-
Status: Closed
-
Major
-
Resolution: Fixed
-
1.0-JSR-1
-
None
-
None
Description
Currently, if a class has a closure field, it can't be used as if it were a method call:
class MyBean { methClosure = { println "hello"}}
mb = new MyBean()
mb.methClosure() // throws a MissingPropertyException
My provider patch will allow that to work.