apache / royale-compiler

Apache Royale Compiler
https://royale.apache.org/
Apache License 2.0
95 stars 49 forks source link

[JS] XML issues #206

Closed greg-dove closed 2 years ago

greg-dove commented 2 years ago

the following two examples generate bad javascript:

var xml:XML =<xml><foo/></xml>;

example 1:
delete xml.*; //should remove all children.

example 2:
for (var child:XML in xml.*) {//should loop over XMLList children

}