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/08/03 10:09:20 UTC

[jira] [Created] (JEXL-209) Unsolvable function/method '.(...)'

Dmitri Blinov created JEXL-209:
----------------------------------

             Summary: Unsolvable function/method '<?>.<null>(...)'
                 Key: JEXL-209
                 URL: https://issues.apache.org/jira/browse/JEXL-209
             Project: Commons JEXL
          Issue Type: Bug
    Affects Versions: 3.0
            Reporter: Dmitri Blinov


The following code throws error *Unsolvable function/method*
{code}
x = new('java.util.HashMap'); x.a = function() {return 1}; x['a']()
{code}
while the following code evaluates as expected
{code}
x = new('java.util.HashMap'); x.a = function() {return 1}; x.a()
{code}
and returns 1



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