Harbs created FLEX-35072:
----------------------------
Summary: "+" operator failure on XMLList
Key: FLEX-35072
URL: https://issues.apache.org/jira/browse/FLEX-35072
Project: Apache Flex
Issue Type: Bug
Components: FalconJX
Affects Versions: Apache FalconJX 0.6.0
Reporter: Harbs
var list1:XMLList = new XMLList();
var list2:XMLList = new XMLList();
//....
list1 += list2;
This compiles into the equivalent of list1 = list1.toString() +
list2.toString().
It should compile into:
list1.concat(list2);
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)