[
https://issues.apache.org/jira/browse/JEXL-190?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15198835#comment-15198835
]
Henri Biestro commented on JEXL-190:
------------------------------------
I've been working on a fix but stumbled on a potential issue wrt to caching and
variables (local or global) holding 'functors'. I should commit something
momentarily; thanks for your patience.
> local function within context is not resolved if function resolver class
> without namespace is specified
> -------------------------------------------------------------------------------------------------------
>
> 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
> Assignee: Henri Biestro
>
> {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)