Paul King created GROOVY-8827:
---------------------------------

             Summary: Close a small gap in the EMC DSL for constructors
                 Key: GROOVY-8827
                 URL: https://issues.apache.org/jira/browse/GROOVY-8827
             Project: Groovy
          Issue Type: Improvement
    Affects Versions: 2.5.3
            Reporter: Paul King
            Assignee: Paul King


In the sample below, the first short-hand (Integer case) is recognised, the 
second two aren't for constructors even though they are for methods and work if 
"<init>" is used instead:
{code}
Integer.metaClass {
    constructor = { List l -> l.size() }
}
Short.metaClass {
    constructor { List l -> l.size() as short }
}
Long.metaClass {
    constructor << { List l -> l.size() as long }
}

def result = [[] as Short, ['foo'] as Integer, ['bar', 'baz'] as Long]
assert result.toString() == '[0, 1, 2]'
assert result*.class == [Short, Integer, Long]
{code}



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

Reply via email to