as3hx
as3hx copied to clipboard
Convert AS3 sources to their Haxe equivalent
If an included function declaration is last in the class: ``` public class Foo { public function Foo():void { } include "shared_function.as"; } ``` It throws: Foo.as(4) : Unexpected }...
In haxe, you can only call your class's static functions implicitly without a typename. In as3, you can call your superclass's static functions in this manner as well. So static...
for inline struct data the opening brace { has to be on same line as first entry or the whole app crashes
Internal access specifier on root package gets translated to @:allow(), which in current version of Haxe does nothing. There is unfortunately no fix available to make this possible in the...
Hello, The tools is very impressive and worked for the most part except that I am getting two errors that I am not able to fix. Any help with this...
1. Set bracesOnNewline flag to true in the config file. 2. Run as3hx on the test folder. 3. The outputted code does not seem to have the braces on the...