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 2016/08/04 13:48:20 UTC

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

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

Henri Biestro resolved JEXL-209.
--------------------------------
    Resolution: Fixed

RELEASE-NOTES.txt
src/main/java/org/apache/commons/jexl3/internal/Interpreter.java
src/site/xdoc/changes.xml
src/test/java/org/apache/commons/jexl3/IssuesTest.java

Committed revision 1755186.

> 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
>            Assignee: Henri Biestro
>             Fix For: 3.0.1
>
>
> 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)