Eric Milles created GROOVY-10498:
------------------------------------

             Summary: 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
            Reporter: Eric Milles


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