as3hx icon indicating copy to clipboard operation
as3hx copied to clipboard

Convert AS3 sources to their Haxe equivalent

Results 56 as3hx issues
Sort by recently updated
recently updated
newest added
trafficstars

as3 code for example: ```actionscript package { public class Test extends flash.display.Sprite { private var _width:Number; override public function set width(value:Number): Number { _width = value; return _width; } override...

https://github.com/HaxeFoundation/as3hx/blob/master/src/as3hx/Compat.hx#L423

as3 code for example: ```actionscript package { public class Issue { public function Issue() { var o:Object = {"0x1":1}; } } } ``` expected result ```haxe class Issue { public...

bug

Could be related to #35 - Issue 1 : When param type is unknown conversion doesn't happen ( see cases with `paramNoType` ) - Issue 2 : `Reflect.setField` conversion is...

bug

It is necessary to add a key (-rewrite) for overwriting the files in "outDir" and not generating same time a new folder (out) inside "outDir" Now every time I have...

enhancement

Need implements Proxy in Compat or ane..

enhancement

as3 code for example: ```actionscript package { public class Issue { public function Issue() { fun(); } private function fun():void { } } } ``` expected result ```haxe package; public...

This was confusing me for a while, because it seemed a random error : When the output directory exists already, we'll get an error on neko. This is because if...

part1: as3 code for example: ``` actionscript package { public class Issue239 { use namespace $internal; public function Issue239() { this.$internal::test(); $internal::test(); } $internal function test():void { trace(this); } }...

enhancement