You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@groovy.apache.org by GitBox <gi...@apache.org> on 2022/02/16 15:33:48 UTC

[GitHub] [groovy] eric-milles edited a comment on pull request #1686: GROOVY-9158, GROOVY-10176, GROOVY-10484: `NamedParam` checking enhancement

eric-milles edited a comment on pull request #1686:
URL: https://github.com/apache/groovy/pull/1686#issuecomment-1041701400


   The change for GROOVY-10484 could be separated out.  The other changes are to address 10176 and 9158 (which can be argued have been addressed already by changes in Groovy 4) and:
   ```groovy
   class C {
     C(int i, int j = 42) {
       print "$i $j"
     }
   }
   new C(i:0,j:0) // prints "0 42"
   ```
   
   I could file this as a separate issue and move the changes to a new branch.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@groovy.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org