> On 7 Feb 2017, at 16.27, Daniel Sun <realblue...@hotmail.com> wrote:
>      To fully support *real* lambda expression, (to be honest)currently I 
> have no idea how to generate bytecode for it. In addition, supporting Static 
> Compilation will be another big work…
> 
> 
A real lambda expression is implemented in Java as an invokedynamic call which 
makes use of a bootstrap method calling into a class called the 
LambdaMetafactory 
(https://docs.oracle.com/javase/8/docs/api/java/lang/invoke/LambdaMetafactory.html
 
<https://docs.oracle.com/javase/8/docs/api/java/lang/invoke/LambdaMetafactory.html>)
 , and puts the body of the lambda expression into a hidden method on the 
class. The LambdaMetafactory sets up the magic class which holds any escaped 
variables and implements the functional interface. To work, it requires EXACT 
type information, so it's only possible to do this in static compilation.

>  
> 
> For instance, we could warn the user if the lambda referred to 'this' or 
> 'super' directly.
> I think ‘this’ and ‘super’ can be referred but developers should not change 
> its resolve strategy, so we can forbidden the scenario by syntax check 😊
> 
>  
> 
>      I would like to open a new discussion based on our discussion in the 
> dev-list later and wish others would think same with us to accept the closure 
> with lambda syntax
> 
> 

I'm not sure why we need a separate discussion.
We have a basic choice: 1) Use Java-lambda semantics or 2) Groovy-closure 
semantics. As a variation on 2, we can add some help for people pasting Java 
code into a Groovy program.

Generating faster/tighter code for lambdas (or even closures) can be 
implemented as a separate task, the two aren't really interconnected, since the 
Groovy closure is so versatile to begin with.

-Jesper
>  
> 
> 发件人: [hidden email] <x-msg://13/user/SendEmail.jtp?type=node&node=5738481&i=0>
> 发送时间: 2017年2月7日 23:10
> 收件人: [hidden email] <x-msg://13/user/SendEmail.jtp?type=node&node=5738481&i=1>
> 主题: Lambda vs. Closure (was: [VOTE] Apache Groovy Roadmap)
> 
>  
> 
> (changing the subject so we don't disrupt the main discussion)
> 
> Not quite 😔
> 
> The changes in Java to support Lambdas are much deeper than just how the 
> Metafactory is invokedynamic'ed, as it changes how type inference and 
> overload resolution is done. Same as with the issues we discussed a while 
> back around method references: Supporting Java8 semantics in the Groovy 
> compiler is a very big task, as we just don't have the type information 
> available.
> 
> I would much rather suggest supporting the lambda syntax with groovy 
> semantics, but add warnings if we detect that the code may rely on Java 
> lambda semantics. For instance, we could warn the user if the lambda referred 
> to 'this' or 'super' directly.
> 
> -Jesper
> 
>> On 7 Feb 2017, at 16.00, Daniel Sun <[hidden email] 
>> <x-msg://13/user/SendEmail.jtp?type=node&node=5738478&i=0>> wrote:
>> 
>> Hi Jochen,
>> 
>>  
>> 
>> That’s great!
>> 
>> Paul and Graeme are both afraid of future breaking changes of groovy’s 
>> lambda expression, which is currently based on closure. If we could generate 
>> *real* lambda bytecode for LambdaExpression, groovy’s lambda expression will 
>> behave same with Java8’s at runtime😊
>> 
>>  
>> 
>> Cheers,
>> 
>> Daniel.Sun
>> 
>>  
>> 
>> 发件人: <a 
>> href="x-msg://12/user/SendEmail.jtp?type=node&amp;node=5738477&amp;i=0" 
>> target="_top" rel="nofollow" link="external" class="">[hidden email]
>> 发送时间: 2017年2月7日 22:23
>> 收件人: <a 
>> href="x-msg://12/user/SendEmail.jtp?type=node&amp;node=5738477&amp;i=1" 
>> target="_top" rel="nofollow" link="external" class="">[hidden email]
>> 主题: Re: [VOTE] Apache Groovy Roadmap
>> 
>>  
>> 
>> 
>> 
>> On 07.02.2017 14:44, Daniel Sun wrote: 
>> > Hi Cédric, 
>> > 
>> >       It seems that too many choices are a annoying problem, but I 
>> > believe we can conquer it sooner or later ;) 
>> >       BTW, is it possible to keep groovy' lambda expression as it 
>> > is(i.e. groovy closure with lambda syntax) but generate *real* lambda 
>> > bytecode for 
>> > it(https://github.com/apache/groovy/blob/parrot/src/main/org/codehaus/groovy/ast/expr/LambdaExpression.java
>> >  
>> > <https://github.com/apache/groovy/blob/parrot/src/main/org/codehaus/groovy/ast/expr/LambdaExpression.java>)?
>> >  
>> 
>> sure, you should make a visitLambdaExpression similar to 
>> visitClosureExpression and change our visitors 
>> 
>> bye Jochen 
>> 
>> 
>> If you reply to this email, your message will be added to the discussion 
>> below:
>> http://groovy.329449.n5.nabble.com/VOTE-Apache-Groovy-Roadmap-tp5738250p5738471.html
>>  
>> <http://groovy.329449.n5.nabble.com/VOTE-Apache-Groovy-Roadmap-tp5738250p5738471.html>
>> To unsubscribe from [VOTE] Apache Groovy Roadmap, click here 
>> <applewebdata://33D9FFB8-25E8-43A3-B0D7-C189440ABA6C>.
>> NAML 
>> <http://groovy.329449.n5.nabble.com/template/NamlServlet.jtp?macro=macro_viewer&id=instant_html%21nabble%3Aemail.naml&base=nabble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace-nabble.view.web.template.NodeNamespace&breadcrumbs=notify_subscribers%21nabble%3Aemail.naml-instant_emails%21nabble%3Aemail.naml-send_instant_email%21nabble%3Aemail.naml>
>> View this message in context: 答复: [VOTE] Apache Groovy Roadmap 
>> <http://groovy.329449.n5.nabble.com/VOTE-Apache-Groovy-Roadmap-tp5738250p5738477.html>
>> Sent from the Groovy Dev mailing list archive 
>> <http://groovy.329449.n5.nabble.com/Groovy-Dev-f372993.html> at Nabble.com 
>> <http://nabble.com/>.
> 
> 
> 
> If you reply to this email, your message will be added to the discussion 
> below:
> http://groovy.329449.n5.nabble.com/VOTE-Apache-Groovy-Roadmap-tp5738250p5738478.html
>  
> <http://groovy.329449.n5.nabble.com/VOTE-Apache-Groovy-Roadmap-tp5738250p5738478.html>
> To unsubscribe from [VOTE] Apache Groovy Roadmap, click here 
> <applewebdata://33D9FFB8-25E8-43A3-B0D7-C189440ABA6C>.
> NAML 
> <http://groovy.329449.n5.nabble.com/template/NamlServlet.jtp?macro=macro_viewer&id=instant_html%21nabble%3Aemail.naml&base=nabble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace-nabble.view.web.template.NodeNamespace&breadcrumbs=notify_subscribers%21nabble%3Aemail.naml-instant_emails%21nabble%3Aemail.naml-send_instant_email%21nabble%3Aemail.naml>
> View this message in context: 答复: Lambda vs. Closure (was: [VOTE] Apache 
> Groovy Roadmap) 
> <http://groovy.329449.n5.nabble.com/VOTE-Apache-Groovy-Roadmap-tp5738250p5738481.html>
> Sent from the Groovy Dev mailing list archive 
> <http://groovy.329449.n5.nabble.com/Groovy-Dev-f372993.html> at Nabble.com.

Reply via email to