Re: FlexJS XML problem

2017-08-28 Thread Harbs
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

FlexJS XML problem

2017-08-28 Thread Harbs
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