Harbs commented on issue #203:
URL: https://github.com/apache/royale-compiler/issues/203#issuecomment-995754883
The issue is like you stated that **none** of the XML methods resolves. That
causes the following as well:
```
var xml:XML = <foo name="baz"/>;
var logStr:String = xml.toXMLString();
console.log(logStr);
```
compiles to:
```
var /** @type {XML} */ xml = new XML( '<foo name="baz"/>');
var /** @type {string} */ logStr =
org.apache.royale.utils.Language.string(xml.toXMLString());
console.log(logStr);
```
So while that **will** work, there's lots of extra calls to
`Language.string`. It would be better if we can avoid that.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]