Dmitri Blinov created JEXL-267:
----------------------------------
Summary: Lambda evaluation
Key: JEXL-267
URL: https://issues.apache.org/jira/browse/JEXL-267
Project: Commons JEXL
Issue Type: Bug
Affects Versions: 3.1
Reporter: Dmitri Blinov
The following script returns correct lambda {{function(s,v)\{42;}}}
{code:java}
var x = (s, v)->{42}{code}
While the following script returns {{42}}
{code:java}
(s, v)->{42}{code}
The expected result is the same lambda as in the first example
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)