├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── Script └── as3tohx ├── bin ├── As3ToHaxe.n └── As3ToJavaScript.n ├── install.sh ├── src ├── As3ToHaxe.hx └── As3ToJavaScript.hx └── test ├── as3 └── Main.as ├── hx └── Main.hx └── js └── Main.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vpmedia/AS3toHX/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vpmedia/AS3toHX/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vpmedia/AS3toHX/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vpmedia/AS3toHX/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vpmedia/AS3toHX/HEAD/README.md -------------------------------------------------------------------------------- /Script/as3tohx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vpmedia/AS3toHX/HEAD/Script/as3tohx -------------------------------------------------------------------------------- /bin/As3ToHaxe.n: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vpmedia/AS3toHX/HEAD/bin/As3ToHaxe.n -------------------------------------------------------------------------------- /bin/As3ToJavaScript.n: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vpmedia/AS3toHX/HEAD/bin/As3ToJavaScript.n -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vpmedia/AS3toHX/HEAD/install.sh -------------------------------------------------------------------------------- /src/As3ToHaxe.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vpmedia/AS3toHX/HEAD/src/As3ToHaxe.hx -------------------------------------------------------------------------------- /src/As3ToJavaScript.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vpmedia/AS3toHX/HEAD/src/As3ToJavaScript.hx -------------------------------------------------------------------------------- /test/as3/Main.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vpmedia/AS3toHX/HEAD/test/as3/Main.as -------------------------------------------------------------------------------- /test/hx/Main.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vpmedia/AS3toHX/HEAD/test/hx/Main.hx -------------------------------------------------------------------------------- /test/js/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vpmedia/AS3toHX/HEAD/test/js/Main.js --------------------------------------------------------------------------------