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-306) Ternary operator ? protects also its branches from resolution errors

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

Henri Biestro closed JEXL-306.
------------------------------

> Ternary operator ? protects also its branches from resolution errors
> --------------------------------------------------------------------
>
>                 Key: JEXL-306
>                 URL: https://issues.apache.org/jira/browse/JEXL-306
>             Project: Commons JEXL
>          Issue Type: Bug
>    Affects Versions: 3.1
>            Reporter: Dmitri Blinov
>            Assignee: Henri Biestro
>            Priority: Major
>             Fix For: 3.2
>
>
> Consider the following test case (suppose its added to IfTest)
> {code:java}
>     @Test
>     public void testTernaryFail() throws Exception {
>         JexlEvalContext jc = new JexlEvalContext();
>         JexlExpression e = JEXL.createExpression("false ? bar : quux");
>         Object o;
>         jc.setStrict(true);
>         jc.setSilent(false);
>         try {
>            o = e.evaluate(jc);
>            Assert.fail("Should have failed");
>         } catch (Exception ex) {
>            // OK
>         }
>     }
> {code}
> The expected behavior is to fail with {{undefined variable...}} because neither {{bar}} nor {{quux}} is defined 



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