Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
1.0-beta-6
-
None
-
None
Description
println x
prints null
class C {
static main(args)
}
throws a MissingPropertyException
this has the unfortunate consequence that closure delegates don't work in Scripts
c =
{println x}x.delegate =['x':100]
c()
prints null rather than 100
This breaks some features of XML-RPC and StreamingMarkupBuilder (and, presumably other things)