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

Eric Milles updated GROOVY-10498:
---------------------------------
    Affects Version/s: 3.0.10

> NamedVariant: default value overrides supplied value if it's falsy 
> (positional parameter)
> -----------------------------------------------------------------------------------------
>
>                 Key: GROOVY-10498
>                 URL: https://issues.apache.org/jira/browse/GROOVY-10498
>             Project: Groovy
>          Issue Type: Bug
>    Affects Versions: 3.0.10, 4.0.0
>            Reporter: Eric Milles
>            Priority: Major
>              Labels: named-parameters
>
> Consider the following:
> {code:groovy}
> import groovy.transform.*
> @ToString(includeNames=true)
> class Color {
>   int r, g, b
> }
> @NamedVariant
> String m(@NamedDelegate Color color, Number alpha=4.5) {
>   return [color, alpha].join(' ')
> }
> print m(r:1, g:2, b:3, 0.0) // "Color(r:1, g:2, b:3) 4.5"!
> {code}



--
This message was sent by Atlassian Jira
(v8.20.1#820001)

Reply via email to