Harbs opened a new issue #203:
URL: https://github.com/apache/royale-compiler/issues/203


   The following application:
   
   ```
   <?xml version="1.0" encoding="utf-8"?>
   <js:Application xmlns:fx="http://ns.adobe.com/mxml/2009";
                   xmlns:js="library://ns.apache.org/royale/basic"
                   applicationComplete="onComplete()">
       <fx:Script>
           <![CDATA[
               private function onComplete():void{
                   var xml:XML = <foo name="baz"/>;
                   console.log(xml.toXMLString());
               }
           ]]>
       </fx:Script>
       <js:valuesImpl>
           <js:SimpleCSSValuesImpl />
       </js:valuesImpl>
       <js:initialView>
           <js:View>
               <js:Label text="ID" id="id1"/>
           </js:View>
       </js:initialView>
   </js:Application>
   ```
   
   compiled using:
   ```
   {
       "config": "royale",
       "compilerOptions": {
           "debug": true,
           "targets": ["JSRoyale"],
           "source-map": true,
           "remove-circulars": true
       },
       "additionalOptions": "-js-output-optimization=skipAsCoercions 
-js-dynamic-access-unknown-members=true -allow-abstract-classes=true 
-js-vector-emulation-class=Array -js-vector-index-checks=false 
-js-complex-implicit-coercions=false -export-public-symbols=false 
-prevent-rename-protected-symbols=false 
-prevent-rename-public-static-methods=false 
-prevent-rename-public-instance-methods=false 
-prevent-rename-public-static-variables=false 
-prevent-rename-public-instance-variables=false 
-prevent-rename-public-instance-accessors=false",
       "files":
       [
           "src/test_project.mxml"
       ]
   }
   ```
   
   Will get an error: `TypeError: a.toXMLString is not a function` when run in 
release mode.
   
   There's a (probably) related issue that `toXMLString` is usually wrapped in 
`Language.string` call when used when expecting a string.
   


-- 
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: issues-unsubscr...@royale.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Reply via email to