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 2017/02/01 23:19:01 UTC

[jira] [Closed] (GROOVY-7935) Right side of assignment - remove parens or not?

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

Paul King closed GROOVY-7935.
-----------------------------

> Right side of assignment - remove parens or not?
> ------------------------------------------------
>
>                 Key: GROOVY-7935
>                 URL: https://issues.apache.org/jira/browse/GROOVY-7935
>             Project: Groovy
>          Issue Type: Bug
>          Components: Documentation
>         Environment: http://groovy-lang.org/style-guide.html, release 2.4.7
>            Reporter: tinne
>            Assignee: John Wagenleitner
>            Priority: Minor
>             Fix For: 2.4.8
>
>
> The Groovy [style guide|http://groovy-lang.org/style-guide.html] says, "...  Groovy doesn’t allow you to remove parentheses. [...] for nested method calls or on the right-hand side of an assignment, you can’t omit them there."
> Then, a code fragment is given, where just this works.
> {noformat}
> def foo(n) { n }
> println foo 1 // won't work, as documented
> def m = foo 1 // this works indeed!
> {noformat}
> Further more, I could not find any examples, where this would not work, neither with comma separated parameter lists nor with infix computations nor closures.
> So I guess it is just a documentation bug and right-hand side parens removal support has been added.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)