Harbs
Harbs
It looks to me like the first target in the list of `targets` is used for code intelligence. This means that if you have: ```` "targets": [ "JSRoyale", "SWF" ],...
Currently SimpleCSSValuesImpl gets style values like so: 1. returns the value from the underlying style if it exists. 2. Walks up the parent tree and returns the parent value if...
I'd like to add BDD style assertions to `RoyaleUnit`. My intention is to implement an `expect` interface similar to https://www.chaijs.com/guide/styles/#expect and http://man.hubwiz.com/docset/Chai.docset/Contents/Resources/Documents/chaijs.com/api/bdd/index.html Not all of these are applicable to ActionScript...
Currently in ActionScript, it's only possible to declare function signatures for methods and package level functions. It's not possible to declare signatures for variables and function paramters. The best you...
Using this simple app: ``` ``` If you compile using this config: ``` { "config": "royale", "compilerOptions": { "debug": true, "targets": ["JSRoyale"], "source-map": true, "remove-circulars": true }, "additionalOptions": "-js-output-optimization=skipAsCoercions -allow-abstract-classes=true...
The following application: ``` ; console.log(xml.toXMLString()); } ]]> ``` 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...
I discovered a situation which results in the error above. It had me scratching my head for quite some time until I found the problem: I had some markup which...
`firstElementChild` is of type Element and I'd expect trying to call it as a function would cause a compiler error `call to type is not a function.` but it compiles...
`new Event()` with no import will successfully compile in JS, but will create a browser event instead of a royale Event. This will usually be a mistake (and not work...