You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "Cameron Samak (Jira)" <ji...@apache.org> on 2021/06/02 17:45:00 UTC

[jira] [Updated] (JEXL-349) Script valid in 3.0 no longer valid

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

Cameron Samak updated JEXL-349:
-------------------------------
    Description: 
{code:java}
String text = "(A ? B.C : D)";
JexlExpression expr = engine.createExpression(text); // works at HEAD
JexlExpression script = engine.createScript(text); // does not work
{code}
Both lines above work in 3.0

  was:
{code:java}
String text = "(A ? B.C : D)";
JexlExpression expr = engine.createExpression(text); // works at HEAD
JexlExpression script = engine.createExpression(text); // does not work
{code}

Both lines above work in 3.0


> Script valid in 3.0 no longer valid
> -----------------------------------
>
>                 Key: JEXL-349
>                 URL: https://issues.apache.org/jira/browse/JEXL-349
>             Project: Commons JEXL
>          Issue Type: Bug
>            Reporter: Cameron Samak
>            Priority: Minor
>
> {code:java}
> String text = "(A ? B.C : D)";
> JexlExpression expr = engine.createExpression(text); // works at HEAD
> JexlExpression script = engine.createScript(text); // does not work
> {code}
> Both lines above work in 3.0



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