[
https://issues.apache.org/jira/browse/FLEX-35071?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Alex Harui resolved FLEX-35071.
-------------------------------
Resolution: Fixed
Fix Version/s: Apache FalconJX 0.7.0
Probably fixed in a56951bbe452a761fe96391f121fe70d6aecf6c3
> Extra "this" causing error
> --------------------------
>
> Key: FLEX-35071
> URL: https://issues.apache.org/jira/browse/FLEX-35071
> Project: Apache Flex
> Issue Type: Bug
> Components: FalconJX
> Reporter: Harbs
> Fix For: Apache FalconJX 0.7.0
>
>
> The following E4X expression:
> list3 = list3.(attribute("name").length());
> compiles to the following (which results in an "undefined" error)
> list3 = list3.filter(function(node){return
> (node.this.attribute("name").length())});
> It should compile to the following (which works as expected)
> list3 = list3.filter(function(node){return
> (node.attribute("name").length())});
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)