Re: JSR 308 support for Groovy

2017-06-12 Thread Paul King
Thanks Daniel, I created this additional sub-task: https://issues.apache.org/jira/browse/GROOVY-8228 JSR308 grammar changes If any parts turn out to be controversial or need further discussion we can create further issues. Cheers, Paul. On Tue, Jun 13, 2017 at 2:34 AM, Daniel Sun

Re: JSR 308 support for Groovy

2017-06-12 Thread Daniel Sun
Hi Paul, > The grammar isn't expecting an annotation on the parameterized type. It > fails for both the old and new parsers with slightly different error > messages. I will set aside some time to complete the grammar and AST construction. Cheers, Daniel.Sun -- View this message in

JSR 308 support for Groovy

2017-06-12 Thread Paul King
I have started examining what is required for JSR 308 support in Groovy. It is one of those things which might make sense to ensure we support in the new grammar from the get go. Current issues: https://issues.apache.org/jira/browse/GROOVY-8225 https://issues.apache.org/jira/browse/GROOVY-8226

Re: Minecraft modding with Groovy: @CompileStatic not statically compiling fields ?

2017-06-12 Thread Jochen Theodorou
On 10.06.2017 21:52, Ahm Avoby wrote: Hi, I am a Groovy developer at work, and am trying to switch my sons Minecraft 1.11.2 project (Forge based) from Java to Groovy 2.4.11. Since the generated class files need to be obfuscated to work with Minecraft, I am using @CompileStatic, as suggested