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 2018/03/06 05:03:00 UTC

[jira] [Created] (GROOVY-8493) Native lambdas with @CompileStatic at method level

Paul King created GROOVY-8493:
---------------------------------

             Summary: Native lambdas with @CompileStatic at method level
                 Key: GROOVY-8493
                 URL: https://issues.apache.org/jira/browse/GROOVY-8493
             Project: Groovy
          Issue Type: Bug
    Affects Versions: 2.6.0-alpha-3
            Reporter: Paul King


This code:
{code}
import groovy.transform.CompileStatic
import java.util.stream.Collectors

@CompileStatic
class Main {
    static void main(String[] args) {
        assert [2, 3, 4] == [1, 2, 3].stream().map(e -> e.plus 1).collect(Collectors.toList())
    }
}
{code}
works and produces a native lambda with the following bytecode within it's {{doCall}} method:
{code}
INVOKESTATIC org/codehaus/groovy/runtime/dgmimpl/NumberNumberPlus.plus (Ljava/lang/Number;Ljava/lang/Number;)Ljava/lang/Number;
{code}
but moving the {{@compileStatic}} to the {{main}} method only, results in the following error:
{code}
java.lang.NoSuchMethodError: java.lang.Number.plus(Ljava/lang/Number;)Ljava/lang/Number;
{code}
and the following bytecode in the {{doCall}} method:
{code}
INVOKESTATIC java/lang/Number.plus (Ljava/lang/Number;)Ljava/lang/Number;
{code}




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