carlosrovira opened a new issue #153:
URL: https://github.com/apache/royale-compiler/issues/153
I found a bug in Object transpiling.
This code:
```
var timing:Object = {
duration: 1000,
iterations: Infinity
}
```
is translating to:
`{duration:1E3,HF:Infinity}`
a workaround is to do:
```
var timing:Object = new Object();
timing["duration"] = 1000;
timing["iterations"] = Infinity;
```
that transpiles to:
`{duration:1E3,iterations:Infinity}`
That works correctly
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]