Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
Apache FlexJS 0.7.0
-
None
-
windows
Description
Backslash are lost in string with the JS conversion.
The actionscript 3 code
var o:Object = {}; o["\\"] = "Bonjour";
The JS output with missing backslash cause error.
var /** @type {Object} */ o = {}; o["\"] = "Bonjour";