I figured it out and committed a fix.
> On Aug 28, 2017, at 12:07 PM, Harbs wrote:
>
> Given the following XML in Flash:
> var xml:XML = ;
> xml.bar.foo.baz = "baz";
>
> You get an XML structure like so:
>
>
>
>
>baz
>
>
>
>
>
> In JS, this compiles to the fol
Given the following XML in Flash:
var xml:XML = ;
xml.bar.foo.baz = "baz";
You get an XML structure like so:
baz
In JS, this compiles to the following:
var /** @type {XML} */ xml = new XML( '');
xml.child('bar').child('foo').setChild('baz', "baz");
.c