as3compile: small bugfixes, added documentation
[swftools.git] / lib / as3 / ok / xml.as
index 6cda8fe..a9d79f3 100644 (file)
@@ -117,6 +117,10 @@ package {
             assert(x10 != x11);
             x11.b.@a = "x";
             assert(x10 == x11);
+            x11.b.@["a"] = "y";
+            assert(x10 != x11);
+            x11.b.@["a"] = "x";
+            assert(x10 == x11);
 
             var x12:XML = <x><a/></x>;
             x12.a += <b/>;