You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "Henri Biestro (Jira)" <ji...@apache.org> on 2021/06/07 13:15:06 UTC

[jira] [Closed] (JEXL-271) Hoisted variable is lost when currying lambda

     [ https://issues.apache.org/jira/browse/JEXL-271?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Henri Biestro closed JEXL-271.
------------------------------

> Hoisted variable is lost when currying lambda
> ---------------------------------------------
>
>                 Key: JEXL-271
>                 URL: https://issues.apache.org/jira/browse/JEXL-271
>             Project: Commons JEXL
>          Issue Type: Bug
>    Affects Versions: 3.1
>            Reporter: Dmitri Blinov
>            Assignee: Henri Biestro
>            Priority: Major
>             Fix For: 3.2
>
>
> I have noticed that when I curry the lambda that contains hoisted variable, then binding to that variable is lost when I call curried lambda. The following test case illustrates the problem
> {code}
>     @Test
>     public void testCurry4() throws Exception {
>         JexlEngine jexl = new JexlBuilder().strict(false).create();
>         JexlScript base = jexl.createScript("var base = 2; var sum = (x, y, z)->{ base + x + y + z }; var y = sum.curry(1); y(2,3)");
>         Object result = base.execute(null);
>         Assert.assertEquals(8, result);
>     }
> {code}
> To put it another way, the following script returns {{2}} when it should return {{0}};
> {code}var base = 2; var sum = (x, y, z)->{ base + x + y + z }; var y = sum.curry(1); sum(1, 2, 3) - y(2,3){code}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)