Harbs created FLEX-35071:
----------------------------
Summary: 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
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)