Re: upcoming releases

2017-11-06 Thread Paolo Di Tommaso
Eventually this PR in 2.5-beta-3

https://github.com/apache/groovy/pull/566


Cheers,
Paolo


On Mon, Nov 6, 2017 at 7:00 PM,  wrote:

> And https://issues.apache.org/jira/browse/GROOVY-8289 is causing us a lot
> of pain in the debugger and appears to have a simple solution.
>


upcoming releases

2017-11-06 Thread Paul King
I was planning to release 2.4.13 shortly and subsequently 2.5.0-beta-3. I
am just trying to close off a couple more bug fixes. Anyone else have
things they need included?

Cheers, Paul.


RE: `this` in static context

2017-11-06 Thread eric.milles
For sure , "this" and "super" are supported within a closure defined in a 
static context.  Are you saying they also work directly in a static method?  
Given "class A { static main(args} { this } }", this should be of type 
"Class" if it is indeed supported.  It follows that it would work, since you 
can call directly methods on Class from that scope, like getCanonicalName().