Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
Apache FalconJX 0.6.0
-
None
Description
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);