You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@groovy.apache.org by "Paul King (JIRA)" <ji...@apache.org> on 2019/01/16 12:09:03 UTC

[jira] [Closed] (GROOVY-8586) Support Java 9 ARM blocks

     [ https://issues.apache.org/jira/browse/GROOVY-8586?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Paul King closed GROOVY-8586.
-----------------------------

> Support Java 9 ARM blocks
> -------------------------
>
>                 Key: GROOVY-8586
>                 URL: https://issues.apache.org/jira/browse/GROOVY-8586
>             Project: Groovy
>          Issue Type: Improvement
>          Components: Compiler
>    Affects Versions: 3.x
>            Reporter: Jesper Steen Møller
>            Assignee: Daniel Sun
>            Priority: Minor
>             Fix For: 3.0.0-alpha-4, 2.6.0-alpha-5
>
>
> Java 9 introduces a ARM-with-existing-resources construct, like this:
> {code:java}
> OutputStream stream = foo();
> try (stream) {
>    stream.write(whatever());
> }
> {code}
> In other words, the resource need not be in the form of an initialization, but can just be a variable.
> Now that we have ARM in Groovy, we should be able to add this form as well.
>  



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)