You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "Dmitri Blinov (JIRA)" <ji...@apache.org> on 2016/02/25 13:57:18 UTC

[jira] [Created] (JEXL-190) function name within script is not resolved

Dmitri Blinov created JEXL-190:
----------------------------------

             Summary: function name within script is not resolved 
                 Key: JEXL-190
                 URL: https://issues.apache.org/jira/browse/JEXL-190
             Project: Commons JEXL
          Issue Type: Bug
    Affects Versions: 3.0
            Reporter: Dmitri Blinov


{code}
z = function(x) { return x + 1}; return z(1)
{code} returns error unsolvable function/method 'z' while 

{code}
var z = function(x) { return x + 1}; return z(1)
{code} returns 2



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)