joshtynjala commented on issue #203: URL: https://github.com/apache/royale-compiler/issues/203#issuecomment-995064227
With `-js-dynamic-access-unknown-members=true`, toXMLString() is being incorrectly generated as dynamic access, for some reason. ```js console.log(xml["toXMLString"]()); ``` As a temporary workaround, you can remove either `-js-dynamic-access-unknown-members=true` or `-prevent-rename-public-instance-methods=false`. I'll try to figure out why `toXMLString()` isn't being recognized as a known member. -- 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]
