├── debian ├── compat ├── source │ └── format ├── patches │ └── series ├── haxe.changelogs ├── haxe.manpages ├── tests │ └── control └── haxe.install ├── std ├── hl │ └── hl_version ├── lua │ └── _lua │ │ ├── _hx_print.lua │ │ ├── _hx_random_init.lua │ │ └── _hx_apply_self.lua ├── flash │ ├── utils │ │ └── Function.hx │ ├── display │ │ ├── IDrawCommand.hx │ │ ├── IBitmapDrawable.hx │ │ ├── IGraphicsData.hx │ │ ├── IGraphicsFill.hx │ │ ├── IGraphicsPath.hx │ │ └── IGraphicsStroke.hx │ └── events │ │ └── WeakFunctionClosure.hx └── eval │ └── _std │ └── mbedtls │ └── Entropy.hx ├── tests ├── unit │ ├── res1.txt │ ├── src │ │ ├── unit │ │ │ ├── spec │ │ │ │ └── import.hx │ │ │ ├── MyInterface.hx │ │ │ └── issues │ │ │ │ └── misc │ │ │ │ ├── Issue4419External.js │ │ │ │ └── Issue10174Foo.hx │ │ └── RootEnum.hx │ ├── server.bat │ ├── native_swf │ │ ├── ns1.as │ │ ├── ns2.as │ │ └── Lib2.as │ ├── compile-exe-runner.hxml │ ├── compile-js.hxml │ ├── compile-java-runner.hxml │ ├── compile-macro.hxml │ ├── compile-php.hxml │ ├── compile-lua.hxml │ ├── compile-cppia.hxml │ └── compile-neko.hxml ├── misc │ ├── projects │ │ ├── Issue10844 │ │ │ ├── Fail.hx │ │ │ ├── user-metas-did-something.hxml.stdout │ │ │ ├── user-defines-did-something.hxml.stdout │ │ │ ├── base-fail.hxml │ │ │ ├── user-metas-did-something.hxml │ │ │ ├── custom-meta.hxml │ │ │ ├── user-defines-did-something.hxml │ │ │ ├── custom-define.hxml │ │ │ ├── custom-meta-nofail.hxml │ │ │ └── custom-define-nofail.hxml │ │ ├── Issue3300 │ │ │ ├── dir │ │ │ │ └── keepme │ │ │ ├── test-cwd.hxml │ │ │ ├── test-cwd-fail.hxml │ │ │ └── test-cwd-fail.hxml.stderr │ │ ├── Issue4404 │ │ │ ├── src │ │ │ │ ├── Empty.hx │ │ │ │ ├── Child.hx │ │ │ │ └── Base.hx │ │ │ └── compile1.hxml │ │ ├── Issue8567 │ │ │ ├── src │ │ │ │ ├── test.txt │ │ │ │ └── Main.hx │ │ │ └── compile.hxml │ │ ├── Issue3457 │ │ │ ├── A.hx │ │ │ ├── Main.hx │ │ │ └── compile-fail.hxml │ │ ├── display-package │ │ │ ├── src │ │ │ │ ├── C1.hx │ │ │ │ └── pack │ │ │ │ │ └── C2.hx │ │ │ ├── compile1.hxml.stderr │ │ │ ├── compile2.hxml.stderr │ │ │ ├── compile3.hxml.stderr │ │ │ ├── compile3.hxml │ │ │ ├── compile1.hxml │ │ │ └── compile2.hxml │ │ ├── Issue10184 │ │ │ ├── no-warning.hxml.stderr │ │ │ ├── builtin.hxml │ │ │ ├── no-warning-underscore.hxml.stderr │ │ │ └── check-warning.hxml │ │ ├── Issue10711 │ │ │ ├── compile.hxml.stderr │ │ │ ├── lib1 │ │ │ │ └── X.hx │ │ │ ├── lib2 │ │ │ │ └── X.hx │ │ │ └── Main.hx │ │ ├── Issue10793 │ │ │ ├── compile.hxml.stderr │ │ │ └── compile.hxml │ │ ├── Issue10819 │ │ │ ├── compile.hxml.stderr │ │ │ └── compile.hxml │ │ ├── Issue10890 │ │ │ └── build.hxml │ │ ├── Issue10897 │ │ │ ├── Types.hx │ │ │ ├── ModuleFields.hx │ │ │ ├── EnumFields.hx │ │ │ ├── import-subtype-fail.hxml │ │ │ ├── ImportSubtype.hx │ │ │ ├── import-enum-field-fail.hxml │ │ │ ├── import-class-field-fail.hxml │ │ │ ├── import-module-field-fail.hxml │ │ │ ├── ClassFields.hx │ │ │ ├── ImportClassField.hx │ │ │ ├── ImportEnumField.hx │ │ │ ├── ImportModuleField.hx │ │ │ ├── import-abstract-field-fail.hxml │ │ │ └── ImportAbstractField.hx │ │ ├── Issue10935 │ │ │ └── build.hxml │ │ ├── Issue11004 │ │ │ ├── build.hxml │ │ │ └── build.hxml.stdout │ │ ├── Issue11670 │ │ │ ├── compile.hxml.stdout │ │ │ └── compile.hxml │ │ ├── Issue11737 │ │ │ ├── compile1.hxml.stderr │ │ │ ├── compile2.hxml.stderr │ │ │ ├── Main.hx │ │ │ ├── compile2.hxml │ │ │ ├── _setup.hxml │ │ │ ├── compile1.hxml │ │ │ └── compile.hxml │ │ ├── Issue3361 │ │ │ ├── compile.hxml │ │ │ ├── compile1-fail.hxml │ │ │ └── compile2-fail.hxml │ │ ├── Issue3931 │ │ │ ├── pack │ │ │ │ ├── B.hx │ │ │ │ └── A.hx │ │ │ ├── compile1.hxml │ │ │ ├── compile2.hxml │ │ │ ├── Main1.hx │ │ │ └── Main2.hx │ │ ├── Issue4160 │ │ │ ├── compile.hxml.stderr │ │ │ └── compile.hxml │ │ ├── Issue4399 │ │ │ ├── compile.hxml.stderr │ │ │ └── compile.hxml │ │ ├── Issue4456 │ │ │ ├── compile.hxml.stderr │ │ │ └── compile.hxml │ │ ├── Issue4563 │ │ │ ├── compile.hxml.stderr │ │ │ └── compile.hxml │ │ ├── Issue4720 │ │ │ ├── compile2.hxml.stderr │ │ │ ├── compile.hxml │ │ │ └── compile2.hxml │ │ ├── Issue5321 │ │ │ ├── Chest.hx │ │ │ ├── compile.hxml │ │ │ └── Main.hx │ │ ├── Issue5854 │ │ │ ├── compile.hxml.stderr │ │ │ ├── compile.hxml │ │ │ └── compile-fail.hxml │ │ ├── Issue6402 │ │ │ └── compile.hxml │ │ ├── Issue6427 │ │ │ ├── compile.hxml.stderr │ │ │ ├── T.hx │ │ │ ├── compile.hxml │ │ │ └── E.hx │ │ ├── Issue6443 │ │ │ ├── compile.hxml.stderr │ │ │ └── compile.hxml │ │ ├── Issue6583 │ │ │ ├── compile.hxml │ │ │ └── compile.hxml.stderr │ │ ├── Issue6846 │ │ │ ├── compile.hxml │ │ │ └── compile.hxml.stderr │ │ ├── Issue7210 │ │ │ ├── compile.hxml.stderr │ │ │ └── compile.hxml │ │ ├── Issue7447 │ │ │ └── compile.hxml │ │ ├── Issue8191 │ │ │ ├── compile-fail.hxml │ │ │ ├── compile2-fail.hxml │ │ │ ├── compile3-fail.hxml │ │ │ ├── compile4-fail.hxml │ │ │ ├── compile5-fail.hxml │ │ │ ├── compile6-fail.hxml │ │ │ ├── compile7-fail.hxml │ │ │ ├── U1.hx │ │ │ ├── U3.hx │ │ │ ├── X1.hx │ │ │ ├── X2.hx │ │ │ ├── U2.hx │ │ │ ├── U4.hx │ │ │ └── U5.hx │ │ ├── Issue8517 │ │ │ ├── compile.hxml │ │ │ └── compile-fail.hxml │ │ ├── Issue8705 │ │ │ └── compile.hxml │ │ ├── Issue9192 │ │ │ └── compile.hxml │ │ ├── Issue9336 │ │ │ ├── compile.hxml │ │ │ └── my_template.mtt │ │ ├── Issue9342 │ │ │ ├── compile.hxml │ │ │ └── compile.hxml.stderr │ │ ├── Issue9455 │ │ │ └── compile.hxml │ │ ├── Issue9919 │ │ │ ├── compile.hxml.stderr │ │ │ └── compile.hxml │ │ ├── _semver │ │ │ ├── compile.hxml │ │ │ └── compile-fail.hxml │ │ ├── Issue10198 │ │ │ ├── compile4.hxml │ │ │ ├── compile5.hxml │ │ │ ├── compile-fail.hxml │ │ │ ├── compile2-fail.hxml │ │ │ ├── compile3-fail.hxml │ │ │ └── compile6-fail.hxml │ │ ├── Issue11286 │ │ │ └── compile.hxml │ │ ├── Issue1138 │ │ │ ├── src2 │ │ │ │ ├── import.hx │ │ │ │ └── B.hx │ │ │ ├── compile1.hxml.stderr │ │ │ ├── compile2.hxml.stderr │ │ │ ├── src1 │ │ │ │ ├── p2 │ │ │ │ │ └── import.hx │ │ │ │ └── import.hx │ │ │ ├── src3 │ │ │ │ ├── import.hx │ │ │ │ └── Main.hx │ │ │ ├── compile1.hxml │ │ │ ├── compile4-fail.hxml │ │ │ ├── compile2.hxml │ │ │ ├── compile3-fail.hxml │ │ │ └── compile3-fail.hxml.stderr │ │ ├── Issue11700 │ │ │ ├── src │ │ │ │ └── Main.hx │ │ │ └── .haxelib │ │ │ │ └── mylib │ │ │ │ ├── .current │ │ │ │ └── git │ │ │ │ └── src │ │ │ │ └── Main.hx │ │ ├── Issue11813 │ │ │ ├── compile-without.hxml.stderr │ │ │ ├── compile-without.hxml │ │ │ └── compile.hxml │ │ ├── Issue3298 │ │ │ ├── test.hxml │ │ │ └── Main.hx │ │ ├── Issue3310 │ │ │ └── test.hxml │ │ ├── Issue3417 │ │ │ └── compile-fail.hxml │ │ ├── Issue3678 │ │ │ └── compile-fail.hxml │ │ ├── Issue3802 │ │ │ └── compile-fail.hxml │ │ ├── Issue4270 │ │ │ └── test.hxml │ │ ├── Issue4370 │ │ │ ├── compile-fail.hxml │ │ │ └── compile-fail.hxml.stderr │ │ ├── Issue4660 │ │ │ ├── compile.hxml │ │ │ └── include.js │ │ ├── Issue4662 │ │ │ ├── compile.hxml │ │ │ ├── _pkg │ │ │ │ └── A.hx │ │ │ └── Main.hx │ │ ├── Issue5008 │ │ │ └── compile-fail.hxml │ │ ├── Issue5145 │ │ │ └── compile.hxml │ │ ├── Issue5205 │ │ │ └── compile-fail.hxml │ │ ├── Issue5880 │ │ │ ├── compile-fail.hxml │ │ │ ├── compile.hxml │ │ │ ├── compile2-fail.hxml │ │ │ ├── compile3-fail.hxml │ │ │ ├── compile4-fail.hxml │ │ │ ├── compile5-fail.hxml │ │ │ ├── compile-fail.hxml.stderr │ │ │ ├── compile3-fail.hxml.stderr │ │ │ └── compile2-fail.hxml.stderr │ │ ├── Issue5940 │ │ │ └── compile-fail.hxml │ │ ├── Issue5946 │ │ │ └── compile-fail.hxml │ │ ├── Issue6006 │ │ │ └── compile.hxml │ │ ├── Issue6226 │ │ │ └── compile.hxml │ │ ├── Issue6796 │ │ │ └── compile-fail.hxml │ │ ├── Issue6810 │ │ │ ├── compile-fail.hxml │ │ │ ├── compile.hxml │ │ │ ├── logfile-04-fail.hxml │ │ │ └── indent-fail.hxml │ │ ├── Issue6841 │ │ │ └── compile.hxml │ │ ├── Issue6903 │ │ │ ├── compile-fail.hxml │ │ │ └── compile-fail.hxml.stderr │ │ ├── Issue7108 │ │ │ ├── compile-fail.hxml │ │ │ └── compile-fail.hxml.stderr │ │ ├── Issue7363 │ │ │ └── compile-fail.hxml │ │ ├── Issue7614 │ │ │ └── compile-fail.hxml │ │ ├── Issue7638 │ │ │ └── compile-fail.hxml │ │ ├── Issue7809 │ │ │ ├── returnVoid.hxml │ │ │ ├── returnEarly-fail.hxml │ │ │ ├── returnValue-fail.hxml │ │ │ └── returnEarly-fail.hxml.stderr │ │ ├── Issue7905 │ │ │ ├── compile.hxml │ │ │ └── compile.hxml.stderr │ │ ├── Issue7920 │ │ │ └── compile-fail.hxml │ │ ├── Issue8019 │ │ │ ├── compile2-fail.hxml │ │ │ ├── compile-fail.hxml │ │ │ ├── compile3-fail.hxml │ │ │ └── compile2-fail.hxml.stderr │ │ ├── Issue8119 │ │ │ ├── compile-fail.hxml │ │ │ ├── compile2-fail.hxml │ │ │ ├── Main.hx │ │ │ └── Main2.hx │ │ ├── Issue8159 │ │ │ ├── compile.hxml │ │ │ └── Main.hx │ │ ├── Issue8173 │ │ │ └── compile-fail.hxml │ │ ├── Issue8202 │ │ │ └── compile.hxml │ │ ├── Issue8258 │ │ │ └── compile-fail.hxml │ │ ├── Issue8283 │ │ │ └── compile-fail.hxml │ │ ├── Issue8336 │ │ │ ├── compile-fail.hxml │ │ │ └── compile-fail.hxml.stderr │ │ ├── Issue8354 │ │ │ ├── compile.hxml │ │ │ ├── compile1-fail.hxml │ │ │ └── compile2-fail.hxml │ │ ├── Issue8393 │ │ │ └── compile-fail.hxml │ │ ├── Issue8404 │ │ │ └── compile.hxml │ │ ├── Issue8488 │ │ │ └── compile-fail.hxml │ │ ├── Issue8530 │ │ │ └── compile.hxml │ │ ├── Issue8533 │ │ │ └── compile.hxml │ │ ├── Issue8677 │ │ │ └── compile-fail.hxml │ │ ├── Issue8697 │ │ │ ├── compile-fail.hxml │ │ │ ├── compile2-fail.hxml │ │ │ ├── Main.hx │ │ │ ├── Main2.hx │ │ │ ├── compile-fail.hxml.stderr │ │ │ └── compile2-fail.hxml.stderr │ │ ├── Issue8704 │ │ │ └── compile-fail.hxml │ │ ├── Issue8750 │ │ │ ├── compile.hxml │ │ │ └── compile-fail.hxml │ │ ├── Issue8752 │ │ │ └── compile-fail.hxml │ │ ├── Issue8765 │ │ │ ├── compile-fail.hxml │ │ │ └── compile-fail.hxml.stderr │ │ ├── Issue8790 │ │ │ ├── compile-fail.hxml │ │ │ └── compile-fail.hxml.stderr │ │ ├── Issue8819 │ │ │ └── compile-fail.hxml │ │ ├── Issue8840 │ │ │ └── compile-fail.hxml │ │ ├── Issue9017 │ │ │ └── compile-fail.hxml │ │ ├── Issue9061 │ │ │ └── compile-fail.hxml │ │ ├── Issue9067 │ │ │ └── compile-fail.hxml │ │ ├── Issue9226 │ │ │ ├── compile-fail.hxml │ │ │ └── compile-fail.hxml.stderr │ │ ├── Issue9243 │ │ │ ├── compile-fail.hxml │ │ │ └── compile-fail.hxml.stderr │ │ ├── Issue9245 │ │ │ └── compile-fail.hxml │ │ ├── Issue9294 │ │ │ └── compile-fail.hxml │ │ ├── Issue9295 │ │ │ └── compile-fail.hxml │ │ ├── Issue9347 │ │ │ └── compile-fail.hxml │ │ ├── Issue9368 │ │ │ └── compile-fail.hxml │ │ ├── Issue9378 │ │ │ └── compile-fail.hxml │ │ ├── Issue9381 │ │ │ └── compile.hxml │ │ ├── Issue9389 │ │ │ ├── compile-fail.hxml │ │ │ └── compile-fail.hxml.stderr │ │ ├── Issue9417 │ │ │ ├── compile-fail.hxml │ │ │ └── compile-fail.hxml.stderr │ │ ├── Issue9514 │ │ │ ├── compile.hxml.stderr │ │ │ └── compile.hxml │ │ ├── Issue9556 │ │ │ └── compile-fail.hxml │ │ ├── Issue9584 │ │ │ └── compile-fail.hxml │ │ ├── Issue9769 │ │ │ └── compile.hxml │ │ ├── Issue9811 │ │ │ └── compile.hxml │ │ ├── Issue9971 │ │ │ └── compile-fail.hxml │ │ ├── issue5002 │ │ │ ├── compile-fail.hxml │ │ │ ├── compile2-fail.hxml │ │ │ ├── compile4-fail.hxml │ │ │ └── compile3-fail.hxml │ │ ├── Issue10005 │ │ │ └── compile-fail.hxml │ │ ├── Issue10024 │ │ │ └── compile-fail.hxml │ │ ├── Issue10034 │ │ │ └── compile-fail.hxml │ │ ├── Issue10039 │ │ │ └── compile-fail.hxml │ │ ├── Issue10052 │ │ │ └── compile-fail.hxml │ │ ├── Issue10186 │ │ │ └── compile-fail.hxml │ │ ├── Issue10189 │ │ │ ├── compile-fail.hxml │ │ │ └── compile-fail.hxml.stderr │ │ ├── Issue10219 │ │ │ └── compile-fail.hxml │ │ ├── Issue10229 │ │ │ └── compile-fail.hxml │ │ ├── Issue10264 │ │ │ ├── compile-fail.hxml │ │ │ └── compile-fail.hxml.stderr │ │ ├── Issue10287 │ │ │ ├── compile-fail.hxml │ │ │ └── Main.hx │ │ ├── Issue10291 │ │ │ ├── compile-fail.hxml │ │ │ └── compile-fail.hxml.stderr │ │ ├── Issue10325 │ │ │ ├── compile-fail.hxml │ │ │ └── compile-fail.hxml.stderr │ │ ├── Issue10358 │ │ │ ├── compile-fail.hxml │ │ │ ├── compile2-fail.hxml │ │ │ ├── compile3-fail.hxml │ │ │ ├── Main.hx │ │ │ ├── Main2.hx │ │ │ └── Main3.hx │ │ ├── Issue10426 │ │ │ └── compile-fail.hxml │ │ ├── Issue10504 │ │ │ └── compile-fail.hxml │ │ ├── Issue10871 │ │ │ ├── TypeTools │ │ │ │ ├── compile.hxml.stdout │ │ │ │ └── compile.hxml │ │ │ ├── Compiler │ │ │ │ ├── compile-fail.hxml │ │ │ │ └── compile1.hxml │ │ │ └── Context │ │ │ │ └── compile.hxml │ │ ├── Issue11334 │ │ │ └── compile-fail.hxml │ │ ├── Issue11368 │ │ │ ├── compile-fail.hxml │ │ │ └── compile-fail.hxml.stderr │ │ ├── Issue11661 │ │ │ └── compile.hxml │ │ ├── Issue11676 │ │ │ ├── compile.hxml │ │ │ └── compile.hxml.stdout │ │ ├── Issue11682 │ │ │ └── compile.hxml │ │ ├── Issue2472 │ │ │ └── compile-fail.hxml │ │ ├── Issue2969 │ │ │ └── compile-fail.hxml │ │ ├── Issue3500 │ │ │ └── A.hx │ │ ├── Issue3710 │ │ │ ├── compile-1-fail.hxml │ │ │ ├── compile-2-fail.hxml │ │ │ ├── compile-1-fail.hxml.stderr │ │ │ └── compile-2-fail.hxml.stderr │ │ ├── Issue3714 │ │ │ ├── compile-fail.hxml │ │ │ └── compile-fail.hxml.stderr │ │ ├── Issue3726 │ │ │ ├── compile-1-fail.hxml │ │ │ └── compile-2-fail.hxml │ │ ├── Issue3781 │ │ │ └── compile-fail.hxml │ │ ├── Issue3907 │ │ │ └── compile.hxml │ │ ├── Issue3956 │ │ │ ├── compile.hxml.stderr │ │ │ └── compile.hxml │ │ ├── Issue4454 │ │ │ ├── compile.hxml.stderr │ │ │ └── compile.hxml │ │ ├── Issue5949 │ │ │ ├── compile-fail.hxml │ │ │ └── indent-fail.hxml │ │ ├── Issue6005 │ │ │ ├── compile1.hxml │ │ │ └── compile1.hxml.stderr │ │ ├── Issue6340 │ │ │ └── compile-fail.hxml │ │ ├── Issue7968 │ │ │ ├── compile-fail.hxml │ │ │ ├── Foo.hx │ │ │ └── Main.hx │ │ ├── Issue7997 │ │ │ └── compile-fail.hxml │ │ ├── Issue8088 │ │ │ ├── compile-fail.hxml │ │ │ └── compile.hxml │ │ ├── Issue8277 │ │ │ ├── compile1-fail.hxml │ │ │ ├── compile2-fail.hxml │ │ │ ├── compile1-fail.hxml.stderr │ │ │ └── compile2-fail.hxml.stderr │ │ ├── Issue8527 │ │ │ ├── compile-fail.hxml │ │ │ ├── Main.hx │ │ │ └── compile-fail.hxml.stderr │ │ ├── Issue8534 │ │ │ └── compile-fail.hxml │ │ ├── Issue8550 │ │ │ ├── compile-fail.hxml │ │ │ ├── compile.hxml │ │ │ └── compile-fail.hxml.stderr │ │ ├── Issue8551 │ │ │ └── compile-fail.hxml │ │ ├── Issue8565 │ │ │ └── compile-fail.hxml │ │ ├── Issue8579 │ │ │ ├── compile-fail.hxml │ │ │ └── compile-fail.hxml.stderr │ │ ├── Issue8608 │ │ │ └── compile-fail.hxml │ │ ├── Issue8618 │ │ │ ├── compile-fail.hxml │ │ │ ├── compile2-fail.hxml │ │ │ ├── compile3-fail.hxml │ │ │ └── compile4-fail.hxml │ │ ├── Issue9015 │ │ │ └── compile-fail.hxml │ │ ├── Issue9391 │ │ │ └── compile-fail.hxml │ │ ├── Issue9612 │ │ │ └── compile-fail.hxml │ │ ├── Issue9640 │ │ │ └── compile-fail.hxml │ │ ├── Issue9659 │ │ │ └── compile-fail.hxml │ │ ├── Issue9676 │ │ │ ├── compile2-fail.hxml │ │ │ ├── compile3-fail.hxml │ │ │ ├── compile1-fail.hxml │ │ │ ├── MainExpr.hx │ │ │ ├── MainMacro.hx │ │ │ ├── compile1D.hxml │ │ │ ├── compile2D.hxml │ │ │ └── compile3D.hxml │ │ ├── Issue9692 │ │ │ ├── compile-fail.hxml │ │ │ ├── Main.hx │ │ │ └── compile-fail.hxml.stderr │ │ ├── Issue9785 │ │ │ ├── compile-fail.hxml │ │ │ └── Main.hx │ │ ├── Issue9796 │ │ │ └── compile-fail.hxml │ │ ├── Issue11055 │ │ │ └── compile-fail.hxml │ │ ├── Issue11193 │ │ │ └── compile.hxml │ │ ├── Issue2263 │ │ │ ├── ImportCompletion.hx │ │ │ ├── SubtypeStaticCompletion.hx │ │ │ ├── type-completion.hxml │ │ │ ├── import-completion.hxml │ │ │ └── subtype-static-completion.hxml │ │ ├── Issue2508 │ │ │ └── compile.hxml │ │ ├── Issue2995 │ │ │ ├── usage.hxml │ │ │ └── position.hxml │ │ ├── Issue3238 │ │ │ ├── not-last-fail.hxml │ │ │ ├── optional-fail.hxml │ │ │ └── default-value-fail.hxml │ │ ├── Issue3699 │ │ │ ├── compile-var-fail.hxml │ │ │ └── compile-var-fail.hxml.stderr │ │ ├── Issue4293 │ │ │ ├── compile-class-fail.hxml │ │ │ ├── compile-enum-fail.hxml │ │ │ ├── compile-field-fail.hxml │ │ │ ├── OnEnum.hx │ │ │ ├── OnEnumCtor.hx │ │ │ ├── OnTypedef.hx │ │ │ ├── compile-abstract-fail.hxml │ │ │ ├── compile-enum-ctor-fail.hxml │ │ │ ├── compile-typedef-fail.hxml │ │ │ ├── OnAbstract.hx │ │ │ ├── OnClass.hx │ │ │ └── OnField.hx │ │ ├── Issue4679 │ │ │ ├── compile.hxml.stderr │ │ │ └── compile.hxml │ │ ├── Issue4712 │ │ │ ├── compile.hxml │ │ │ └── compile.hxml.stderr │ │ ├── Issue4825 │ │ │ └── compile.hxml │ │ ├── Issue5005 │ │ │ └── compile.hxml │ │ ├── Issue5122 │ │ │ └── compile.hxml │ │ ├── Issue5125 │ │ │ └── compile.hxml │ │ ├── Issue5128 │ │ │ ├── compile.hxml │ │ │ └── Main.hx │ │ ├── Issue5134 │ │ │ ├── compile-fail.hxml │ │ │ └── compile-fail.hxml.stderr │ │ ├── Issue5152 │ │ │ └── compile.hxml │ │ ├── Issue6201 │ │ │ ├── compile2-fail.hxml │ │ │ └── compile1-fail.hxml.disabled │ │ ├── Issue6525 │ │ │ ├── compile-fail.hxml.disabled │ │ │ └── pack │ │ │ │ └── IPack.hx │ │ ├── Issue6584 │ │ │ ├── compile1-fail.hxml │ │ │ ├── compile2-fail.hxml │ │ │ ├── compile3-fail.hxml │ │ │ ├── compile4-fail.hxml │ │ │ ├── compile5-fail.hxml │ │ │ └── Main1.hx │ │ ├── Issue6772 │ │ │ └── compile.hxml │ │ ├── Issue6780 │ │ │ ├── double quotes │ │ │ │ └── Double.hx │ │ │ ├── single quotes │ │ │ │ └── Single.hx │ │ │ └── compile.hxml │ │ ├── Issue7096 │ │ │ └── compile.hxml │ │ ├── Issue8466 │ │ │ └── compile.hxml │ │ ├── Issue9010 │ │ │ ├── ChildFields-fail.hxml │ │ │ ├── NativeMeta-fail.hxml │ │ │ ├── InterfaceFields-fail.hxml │ │ │ └── InvalidOverride-fail.hxml │ │ ├── Issue9204 │ │ │ └── compile.hxml │ │ ├── Issue9425 │ │ │ └── compile-success.hxml │ │ ├── Issue9631 │ │ │ ├── compile-fields-fail.hxml │ │ │ ├── compile-types-fail.hxml │ │ │ └── Fields.hx │ │ ├── Issue9712 │ │ │ └── compile.hxml │ │ ├── Issue9838 │ │ │ └── compile.hxml │ │ ├── Issue10139 │ │ │ └── compile-fail.hxml │ │ ├── Issue10832 │ │ │ ├── compile.hxml │ │ │ └── compile.hxml.stdout │ │ ├── Issue11684 │ │ │ └── compile-fail.hxml │ │ ├── Issue11725 │ │ │ └── compile-fail.hxml │ │ ├── Issue12098 │ │ │ ├── compile-fail.hxml │ │ │ └── compile-fail.hxml.stderr │ │ ├── Issue1310 │ │ │ └── compile1-fail.hxml │ │ ├── Issue1968 │ │ │ └── compile.hxml │ │ ├── Issue2087 │ │ │ ├── compile-fail.hxml │ │ │ ├── Main.hx │ │ │ └── compile-fail.hxml.stderr │ │ ├── Issue2148 │ │ │ └── compile1-fail.hxml │ │ ├── Issue2938 │ │ │ └── compile.hxml │ │ ├── Issue2991 │ │ │ └── compile.hxml │ │ ├── Issue2993 │ │ │ └── compile.hxml │ │ ├── Issue2997 │ │ │ └── compile1.hxml │ │ ├── Issue3192 │ │ │ └── compile1-fail.hxml │ │ ├── Issue3783 │ │ │ └── compile-fail.hxml │ │ ├── Issue3975 │ │ │ └── compile-fail.hxml │ │ ├── Issue4114 │ │ │ ├── compile1-fail.hxml │ │ │ ├── compile2-fail.hxml │ │ │ ├── Main1.hx │ │ │ ├── compile1-fail.hxml.stderr │ │ │ └── compile2-fail.hxml.stderr │ │ ├── Issue4247 │ │ │ ├── compile-fail.hxml │ │ │ └── compile-fail.hxml.stderr │ │ ├── Issue4250 │ │ │ └── compile-fail.hxml │ │ ├── Issue4265 │ │ │ ├── compile.hxml │ │ │ └── compile.hxml.stderr │ │ ├── Issue4378 │ │ │ └── compile-fail.hxml │ │ ├── Issue4448 │ │ │ └── compile1-fail.hxml │ │ ├── Issue4458 │ │ │ ├── compile-pass1.hxml │ │ │ ├── compile-pass2.hxml │ │ │ ├── compile1-fail.hxml │ │ │ ├── compile2-fail.hxml │ │ │ ├── compile1-fail.hxml.stderr │ │ │ └── compile2-fail.hxml.stderr │ │ ├── Issue4466 │ │ │ └── compile-fail.hxml │ │ ├── Issue4580 │ │ │ ├── compile-fail.hxml │ │ │ ├── compile-fail.hxml.stderr │ │ │ └── Main.hx │ │ ├── Issue4671 │ │ │ ├── compile1-fail.hxml │ │ │ ├── compile2-fail.hxml │ │ │ ├── compile1-fail.hxml.stderr │ │ │ └── compile2-fail.hxml.stderr │ │ ├── Issue4689 │ │ │ ├── compile-fail.hxml │ │ │ └── compile-fail.hxml.stderr │ │ ├── Issue4754 │ │ │ └── compile1-fail.hxml │ │ ├── Issue4761 │ │ │ └── compile1-fail.hxml │ │ ├── Issue4764 │ │ │ └── compile1-fail.hxml │ │ ├── Issue4766 │ │ │ ├── compile1-fail.hxml │ │ │ └── compile1-fail.hxml.stderr │ │ ├── Issue4775 │ │ │ └── compile1-fail.hxml │ │ ├── Issue4816 │ │ │ └── compile1-fail.hxml │ │ ├── Issue4891 │ │ │ └── compile-fail.hxml │ │ ├── Issue4904 │ │ │ ├── compile-fail.hxml │ │ │ └── compile-fail.hxml.stderr │ │ ├── Issue4907 │ │ │ └── compile-fail.hxml │ │ ├── Issue4954 │ │ │ └── compile-fail.hxml │ │ ├── Issue4957 │ │ │ └── compile-fail.hxml │ │ ├── Issue4982 │ │ │ ├── compile-fail.hxml │ │ │ └── compile-fail.hxml.stderr │ │ ├── Issue5010 │ │ │ ├── compile-fail.hxml │ │ │ └── compile-fail.hxml.stderr │ │ ├── Issue5039 │ │ │ ├── compile-fail.hxml │ │ │ └── compile2-fail.hxml │ │ ├── Issue5123 │ │ │ └── compile.hxml │ │ ├── Issue5206 │ │ │ └── compile-fail.hxml │ │ ├── Issue5268 │ │ │ └── compile-fail.hxml │ │ ├── Issue5375 │ │ │ └── compile-fail.hxml │ │ ├── Issue5559 │ │ │ └── import.hx │ │ ├── Issue5924 │ │ │ ├── compile-fail.hxml │ │ │ └── compile-fail.hxml.stderr │ │ ├── Issue5952 │ │ │ ├── compile1-fail.hxml │ │ │ └── compile1-fail.hxml.stderr │ │ ├── Issue6445 │ │ │ ├── compile-fail.hxml │ │ │ └── compile-fail.hxml.stderr │ │ ├── Issue6542 │ │ │ ├── compile-fail.hxml │ │ │ └── compile-fail.hxml.stderr │ │ ├── Issue6550 │ │ │ ├── compile-fail.hxml │ │ │ └── compile-fail.hxml.stderr │ │ ├── Issue6622 │ │ │ └── compile1-fail.hxml │ │ ├── Issue6699 │ │ │ └── compile-fail.hxml │ │ ├── Issue6707 │ │ │ ├── compile-fail.hxml │ │ │ └── compile-fail.hxml.stderr │ │ ├── Issue6714 │ │ │ └── compile-fail.hxml │ │ ├── Issue6757 │ │ │ └── compile-fail.hxml │ │ ├── Issue6765 │ │ │ ├── compile-fail.hxml │ │ │ └── compile-fail.hxml.stderr │ │ ├── Issue6826 │ │ │ └── compile-fail.hxml │ │ ├── Issue6878 │ │ │ ├── compile-fail.hxml │ │ │ └── compile1-fail.hxml │ │ ├── Issue6922 │ │ │ └── compile.hxml │ │ ├── Issue6950 │ │ │ ├── compile-fail.hxml │ │ │ └── compile-fail.hxml.stderr │ │ ├── Issue6965 │ │ │ └── compile-fail.hxml │ │ ├── Issue7039 │ │ │ └── compile-fail.hxml │ │ ├── Issue7076 │ │ │ └── compile-fail.hxml │ │ ├── Issue7227 │ │ │ └── compile-fail.hxml │ │ ├── Issue7333 │ │ │ ├── compile-fail.hxml │ │ │ └── compile-fail.hxml.stderr │ │ ├── Issue7526 │ │ │ └── compile-fail.hxml │ │ ├── Issue7669 │ │ │ └── compile-fail.hxml │ │ ├── Issue7734 │ │ │ ├── compile-fail.hxml │ │ │ └── compile-fail.hxml.stderr │ │ ├── Issue7747 │ │ │ ├── compile-fail.hxml │ │ │ └── compile-fail.hxml.stderr │ │ ├── Issue7752 │ │ │ ├── compile-fail.hxml │ │ │ ├── compile2-fail.hxml.disabled │ │ │ └── compile-fail.hxml.stderr │ │ ├── Issue7824 │ │ │ └── compile-fail.hxml │ │ ├── Issue7871 │ │ │ ├── compile-fail.hxml │ │ │ └── compile-next-fail.hxml │ │ ├── Issue7921 │ │ │ └── compile-fail.hxml │ │ ├── Issue7935 │ │ │ ├── compile-fail.hxml │ │ │ ├── compile2-fail.hxml │ │ │ ├── compile3-fail.hxml │ │ │ ├── compile2-fail.hxml.stderr │ │ │ ├── compile-fail.hxml.stderr │ │ │ ├── compile3-fail.hxml.stderr │ │ │ └── Main.hx │ │ ├── Issue8205 │ │ │ └── compile-fail.hxml │ │ ├── Issue8219 │ │ │ └── compile-fail.hxml │ │ ├── Issue8654 │ │ │ └── compile.hxml │ │ ├── Issue8787 │ │ │ ├── compile1-fail.hxml │ │ │ └── compile2-fail.hxml │ │ ├── Issue9286 │ │ │ └── compile-fail.hxml │ │ ├── Issue9390 │ │ │ ├── compile-fail.hxml │ │ │ └── compile-fail.hxml.stderr │ │ ├── default_type_params │ │ │ ├── compile-ctor-fail.hxml │ │ │ ├── compile-method-fail.hxml │ │ │ ├── Method.hx │ │ │ ├── compile-enum-ctor-fail.hxml │ │ │ ├── EnumCtor.hx │ │ │ └── Ctor.hx │ │ ├── sys-exit │ │ │ ├── compile10-fail.hxml.stderr │ │ │ ├── compile11-fail.hxml.stderr │ │ │ ├── compile00.hxml.stderr │ │ │ └── compile01-fail.hxml.stderr │ │ ├── Issue10147 │ │ │ └── compile-fail.hxml │ │ ├── Issue10152 │ │ │ ├── compile-undefined.hxml │ │ │ ├── compile-defined.hxml.stdout │ │ │ ├── compile-undefined.hxml.stdout │ │ │ └── compile-defined.hxml │ │ ├── Issue10482 │ │ │ └── compile-fail.hxml │ │ ├── Issue10521 │ │ │ └── compile-fail.hxml │ │ ├── Issue10623 │ │ │ ├── compile-fail.hxml │ │ │ └── indent-fail.hxml │ │ ├── Issue10687 │ │ │ └── compile-fail.hxml │ │ ├── Issue10729 │ │ │ ├── compile-fail.hxml │ │ │ └── compile-fail.hxml.stderr │ │ ├── Issue10739 │ │ │ ├── compile.hxml.stdout │ │ │ └── compile.hxml │ │ ├── Issue10804 │ │ │ ├── compile-fail.hxml │ │ │ ├── compile2-fail.hxml │ │ │ └── Main.hx │ │ ├── Issue10825 │ │ │ ├── compile-fail.hxml │ │ │ └── compile-fail.hxml.stderr │ │ ├── Issue10845 │ │ │ └── compile-fail.hxml │ │ ├── Issue10847 │ │ │ ├── good │ │ │ │ └── compile.hxml │ │ │ └── bad │ │ │ │ └── compile-fail.hxml │ │ ├── Issue10852 │ │ │ ├── compile-fail.hxml │ │ │ └── compile-fail.hxml.stderr │ │ ├── Issue10865 │ │ │ ├── compile-fail.hxml │ │ │ └── compile-fail.hxml.stderr │ │ ├── Issue10880 │ │ │ └── compile-fail.hxml │ │ ├── Issue10881 │ │ │ └── compile-fail.hxml │ │ ├── Issue10883 │ │ │ └── compile-fail.hxml │ │ ├── Issue10961 │ │ │ └── compile-fail.hxml │ │ ├── Issue11005 │ │ │ └── compile.hxml │ │ ├── Issue11102 │ │ │ └── compile.hxml │ │ ├── Issue2278 │ │ │ ├── compile.hxml.disabled │ │ │ └── compile.hxml.stderr │ │ ├── Issue3830 │ │ │ └── compile-fail.hxml │ │ ├── Issue4070 │ │ │ └── compile.hxml.disabled │ │ ├── Issue4540 │ │ │ └── compile-fail.hxml │ │ ├── Issue5118 │ │ │ ├── compile1.hxml │ │ │ └── compile2.hxml │ │ ├── Issue5843 │ │ │ ├── compile.hxml │ │ │ └── Transform.hx │ │ ├── Issue6938 │ │ │ └── compile1-fail.hxml │ │ ├── Issue7559 │ │ │ └── compile-fail.hxml │ │ ├── Issue8241 │ │ │ └── compile-fail.hxml │ │ ├── Issue8634 │ │ │ └── compile-fail.hxml │ │ ├── Issue8650 │ │ │ └── compile-fail.hxml │ │ ├── Issue8892 │ │ │ └── compile-fail.hxml │ │ ├── Issue8946 │ │ │ └── compile.hxml │ │ ├── Issue8972 │ │ │ ├── compile-fail.hxml │ │ │ └── compile-fail.hxml.stderr │ │ ├── Issue9014 │ │ │ └── compile-fail.hxml │ │ ├── Issue9163 │ │ │ └── compile-fail.hxml │ │ ├── es6 │ │ │ ├── compile-a-fail.hxml │ │ │ ├── compile-b-fail.hxml │ │ │ ├── compile-c-fail.hxml │ │ │ └── compile-d-fail.hxml │ │ ├── trailing-commas │ │ │ ├── compile1.hxml │ │ │ ├── compile1.hxml.stdout │ │ │ ├── compile2-fail.hxml │ │ │ ├── compile3-fail.hxml │ │ │ └── compile2-fail.hxml.stderr │ │ ├── Issue10107 │ │ │ └── compile.hxml │ │ ├── Issue10170 │ │ │ ├── compile-fail.hxml │ │ │ └── compile-fail.hxml.stderr │ │ ├── Issue10245 │ │ │ ├── Main.hx │ │ │ └── compile-fail.hxml.stderr │ │ ├── Issue10587 │ │ │ ├── compile-using-fail.hxml │ │ │ ├── compile-import-fail.hxml │ │ │ ├── Macro.hx │ │ │ ├── compile-using-fail.hxml.stderr │ │ │ └── compile-import-fail.hxml.stderr │ │ ├── Issue10980 │ │ │ ├── compile.hxml │ │ │ └── compile.hxml.stderr │ │ ├── Issue5525 │ │ │ └── compile-fail.hxml │ │ ├── Issue5856 │ │ │ └── compile.hxml │ │ ├── Issue8471 │ │ │ ├── compile.hxml │ │ │ └── compile2.hxml │ │ ├── Issue8828 │ │ │ ├── compile1-fail.hxml │ │ │ ├── compile2-fail.hxml │ │ │ ├── compile3-fail.hxml │ │ │ ├── Main1.hx │ │ │ ├── Main2.hx │ │ │ └── Main3.hx │ │ ├── Issue9171 │ │ │ ├── compile-fail.hxml │ │ │ └── compile-fail.hxml.stderr │ │ ├── Issue11582 │ │ │ └── compile.hxml │ │ ├── Issue3288 │ │ │ ├── WithoutType.hx │ │ │ ├── with-type.hxml │ │ │ ├── without-type.hxml │ │ │ └── with-empty-type.hxml │ │ ├── Issue4651 │ │ │ ├── Main.hx │ │ │ ├── Main.hx.stdin │ │ │ └── compile.hxml │ │ ├── Issue4803 │ │ │ ├── compile-fail.hxml │ │ │ └── compile2-fail.hxml │ │ ├── Issue5644 │ │ │ ├── User.hx │ │ │ └── compile-fail.hxml │ │ ├── Issue5833 │ │ │ └── compile-fail.hxml │ │ ├── Issue5871 │ │ │ ├── parent-constructor-fail.hxml │ │ │ └── parent-no-constructor-fail.hxml │ │ ├── Issue5888 │ │ │ ├── compile-fail.hxml │ │ │ └── compile-fail.hxml.stderr │ │ ├── Issue6992 │ │ │ └── compile.hxml │ │ ├── Issue9312 │ │ │ └── compile.hxml │ │ ├── Issue9619 │ │ │ ├── abstract-dynamic │ │ │ │ └── compile-fail.hxml │ │ │ ├── abstract-final │ │ │ │ └── compile-fail.hxml │ │ │ ├── abstract-inline │ │ │ │ └── compile-fail.hxml │ │ │ ├── abstract-static │ │ │ │ └── compile-fail.hxml │ │ │ ├── super-abstract │ │ │ │ └── compile-fail.hxml │ │ │ ├── abstract-final-class │ │ │ │ └── compile-fail.hxml │ │ │ ├── abstract-interface │ │ │ │ └── compile-fail.hxml │ │ │ ├── constructing-abstract │ │ │ │ └── compile-fail.hxml │ │ │ ├── abstract-expression-inline │ │ │ │ └── compile-fail.hxml │ │ │ ├── abstract-with-expression │ │ │ │ └── compile-fail.hxml │ │ │ ├── missing-abstract-on-class │ │ │ │ └── compile-fail.hxml │ │ │ └── missing-implementation │ │ │ │ └── compile-fail.hxml │ │ ├── eventLoop │ │ │ └── compile.hxml │ │ ├── local-static │ │ │ ├── Break │ │ │ │ ├── compile-fail.hxml │ │ │ │ └── compile-fail.hxml.stderr │ │ │ ├── Continue │ │ │ │ └── compile-fail.hxml │ │ │ ├── Function │ │ │ │ └── compile-fail.hxml │ │ │ ├── Local │ │ │ │ └── compile-fail.hxml │ │ │ ├── Return │ │ │ │ └── compile-fail.hxml │ │ │ ├── This │ │ │ │ └── compile-fail.hxml │ │ │ ├── LocalVsLocal │ │ │ │ └── compile-fail.hxml │ │ │ └── LocalVsStatic │ │ │ │ └── compile-fail.hxml │ │ ├── Issue10863 │ │ │ ├── reporting-fail.hxml │ │ │ └── Main.js.hx │ │ ├── Issue2232 │ │ │ ├── compile1-fail.hxml │ │ │ └── compile2-fail.hxml │ │ ├── Issue2538 │ │ │ ├── compile-fail.hxml │ │ │ └── compile-fail.hxml.stderr │ │ ├── Issue3102 │ │ │ ├── keep-module.hxml │ │ │ ├── keep-pack1.hxml │ │ │ ├── keep-type.hxml │ │ │ ├── keep-field.hxml │ │ │ ├── keep-pack2.hxml │ │ │ ├── keep-module2.hxml │ │ │ ├── keep-pack3-fail.hxml │ │ │ ├── keep-module-not-rec-fail.hxml │ │ │ ├── keep-pack4-fail.hxml │ │ │ ├── keep-type-not-rec.hxml │ │ │ ├── compile-each.hxml │ │ │ ├── compile2-each.hxml │ │ │ ├── keep-field-not-rec.hxml │ │ │ ├── keep-pack1-not-rec-fail.hxml │ │ │ └── keep-pack2-not-rec.hxml │ │ ├── Issue3181 │ │ │ └── compile-fail.hxml │ │ ├── Issue3621 │ │ │ ├── compile-fail.hxml │ │ │ └── compile-fail.hxml.stderr │ │ ├── Issue4364 │ │ │ └── compile-fail.hxml │ │ ├── Issue4742 │ │ │ ├── compile-fail.hxml │ │ │ └── compile-fail.hxml.stderr │ │ ├── Issue4790 │ │ │ └── compile.hxml.disabled │ │ ├── Issue5126 │ │ │ ├── compile-fail.hxml │ │ │ └── compile-fail.hxml.stderr │ │ ├── Issue6030 │ │ │ └── compile-fail.hxml │ │ ├── Issue6065 │ │ │ ├── compile-fail.hxml │ │ │ └── indent-fail.hxml │ │ ├── Issue6435 │ │ │ ├── Main.js.hx │ │ │ └── compile.hxml │ │ ├── Issue6790 │ │ │ ├── compile.hxml │ │ │ └── compile-fail.hxml │ │ ├── Issue7017 │ │ │ └── compile.hxml │ │ ├── Issue7655 │ │ │ ├── compile.hxml │ │ │ └── compile-fail.hxml │ │ ├── display-type │ │ │ ├── compile.hxml │ │ │ └── Main.hx │ │ ├── inline-constructors │ │ │ ├── compile-extern-fail.hxml │ │ │ └── compile-force-inline-fail.hxml │ │ ├── recursive-callbacks │ │ │ └── compile.hxml │ │ ├── Issue3542 │ │ │ ├── Main.hx │ │ │ └── compile.hxml │ │ ├── Issue3782 │ │ │ └── compile-fail.hxml.disabled │ │ ├── Issue6794 │ │ │ └── compile.hxml │ │ ├── Issue7796 │ │ │ ├── Main.hx │ │ │ └── compile.hxml │ │ ├── Issue8364 │ │ │ └── compile.hxml │ │ ├── Issue9483 │ │ │ └── Main.hx │ │ ├── extern-overloads │ │ │ ├── not-not-extern │ │ │ │ ├── compile-fail.hxml │ │ │ │ └── Main.hx │ │ │ ├── ambiguous-static │ │ │ │ └── compile-fail.hxml │ │ │ ├── amgiuous-call-site │ │ │ │ └── compile-fail.hxml │ │ │ ├── not-on-constructor │ │ │ │ ├── compile-fail.hxml │ │ │ │ └── Main.hx │ │ │ └── missing-override │ │ │ │ └── compile-fail.hxml.disabled │ │ ├── Issue8303 │ │ │ ├── compile-fail.hxml │ │ │ ├── compile.hxml │ │ │ └── indent-fail.hxml │ │ ├── Issue9296 │ │ │ └── compile.hxml │ │ ├── Issue3129 │ │ │ └── compile.hxml │ │ └── Issue7453 │ │ │ ├── Main.macro.hx │ │ │ └── compile.hxml │ ├── es6 │ │ ├── extern.js │ │ └── run.hxml │ ├── cs │ │ ├── run.hxml │ │ └── projects │ │ │ ├── Issue6635 │ │ │ ├── compile.hxml.stderr │ │ │ └── compile.hxml │ │ │ ├── Issue8589 │ │ │ ├── compile.hxml.stderr │ │ │ └── compile.hxml │ │ │ ├── Issue3526 │ │ │ ├── compile.hxml │ │ │ └── compile-7.3.hxml │ │ │ ├── Issue4116 │ │ │ ├── compile.hxml │ │ │ └── base │ │ │ │ └── A.hx │ │ │ ├── Issue5434 │ │ │ └── compile.hxml │ │ │ ├── Issue5915 │ │ │ └── compile.hxml │ │ │ ├── Issue8361 │ │ │ └── compile.hxml │ │ │ ├── Issue8487 │ │ │ ├── compile.hxml │ │ │ └── compile-fail.hxml │ │ │ ├── Issue8664 │ │ │ └── compile.hxml │ │ │ ├── Issue9799 │ │ │ └── compile.hxml │ │ │ ├── Issue3703 │ │ │ └── compile.hxml │ │ │ ├── Issue8347 │ │ │ └── compile.hxml │ │ │ ├── Issue5953 │ │ │ └── compile.hxml │ │ │ ├── Issue8366 │ │ │ └── compile.hxml │ │ │ ├── Issue11350 │ │ │ └── compile.hxml │ │ │ ├── Issue4002 │ │ │ └── compile.hxml │ │ │ ├── Issue7875 │ │ │ └── compile.hxml │ │ │ ├── Issue4598 │ │ │ └── compile.hxml │ │ │ └── Issue4623 │ │ │ └── compile.hxml │ ├── lua │ │ ├── run.hxml │ │ └── projects │ │ │ └── Issue9402 │ │ │ ├── compile.hxml.stderr │ │ │ └── compile.hxml │ ├── php │ │ ├── run.hxml │ │ └── projects │ │ │ ├── Issue10820 │ │ │ └── compile.hxml │ │ │ └── Issue8249 │ │ │ └── compile.hxml │ ├── cpp │ │ ├── run.hxml │ │ └── projects │ │ │ └── Issue10998 │ │ │ └── compile.hxml │ ├── flash │ │ └── run.hxml │ ├── hl │ │ ├── run.hxml │ │ ├── projects │ │ │ ├── Issue11689 │ │ │ │ ├── compile.hxml │ │ │ │ └── Main.hx │ │ │ └── Issue11196 │ │ │ │ ├── compile.hxml │ │ │ │ └── Issue11196.hx │ │ └── reserved-keywords │ │ │ └── compile.hxml │ ├── java │ │ ├── run.hxml │ │ └── projects │ │ │ ├── Issue11054 │ │ │ └── compile.hxml.stdout │ │ │ ├── Issue11131 │ │ │ ├── compile.hxml.stdout │ │ │ ├── compile-fail.hxml │ │ │ └── compile.hxml │ │ │ ├── Issue9799 │ │ │ └── compile.hxml │ │ │ ├── Issue2689 │ │ │ └── compile-fail.hxml │ │ │ ├── Issue8444 │ │ │ └── compile.hxml │ │ │ ├── Issue9574 │ │ │ └── Main.hx │ │ │ ├── Issue9768 │ │ │ └── compile.hxml │ │ │ ├── Issue10280 │ │ │ └── compile.hxml │ │ │ ├── Issue10517 │ │ │ ├── compile-fail.hxml │ │ │ └── compile-fail.hxml.stderr │ │ │ ├── Issue8322 │ │ │ └── compile.hxml │ │ │ ├── Issue9730 │ │ │ └── compile-fail.hxml │ │ │ └── Issue11014 │ │ │ └── compile.hxml │ ├── js │ │ ├── run.hxml │ │ └── projects │ │ │ ├── Issue10434 │ │ │ └── compile-fail.hxml │ │ │ └── Issue10184 │ │ │ └── Main.hx │ ├── python │ │ ├── run.hxml │ │ ├── projects │ │ │ ├── Issue11427 │ │ │ │ └── build.hxml.stdout │ │ │ ├── Issue11060 │ │ │ │ ├── build.hxml.stdout │ │ │ │ └── Main.hx │ │ │ ├── Issue9256 │ │ │ │ └── build.hxml │ │ │ ├── Issue4218 │ │ │ │ └── build.hxml │ │ │ ├── Issue8542 │ │ │ │ └── build.hxml │ │ │ └── Issue9666 │ │ │ │ └── build.hxml │ │ └── pythonImport │ │ │ ├── native_python │ │ │ └── __init__.py │ │ │ └── compile.hxml │ ├── neko │ │ ├── run.hxml │ │ └── projects │ │ │ └── Issue10937 │ │ │ ├── dummy_ndll │ │ │ └── ndll │ │ │ │ └── .exists │ │ │ ├── compile.hxml.stdout │ │ │ └── aaa-setup.hxml │ ├── resolution │ │ ├── run.hxml │ │ └── projects │ │ │ ├── Issue9189 │ │ │ └── compile-fail.hxml │ │ │ ├── spec │ │ │ ├── ModWithPrivate.hx │ │ │ ├── compile-private-fail.hxml │ │ │ └── RootModNoMain.hx │ │ │ └── modulestatics │ │ │ └── Duplicate.hx │ ├── compiler_loops │ │ ├── projects │ │ │ ├── Issue6038 │ │ │ │ └── compile.hxml │ │ │ ├── Issue7733 │ │ │ │ └── compile.hxml │ │ │ ├── Issue9397 │ │ │ │ └── compile.hxml │ │ │ ├── Issue5189 │ │ │ │ └── compile-fail.hxml │ │ │ ├── Issue5345 │ │ │ │ ├── compile-fail.hxml │ │ │ │ ├── compile2-fail.hxml │ │ │ │ └── compile3-fail.hxml │ │ │ ├── Issue5785 │ │ │ │ ├── compile1.hxml │ │ │ │ ├── compile3.hxml │ │ │ │ └── compile2.hxml │ │ │ ├── Issue8588 │ │ │ │ ├── compile-fail.hxml │ │ │ │ ├── compile2-fail.hxml │ │ │ │ ├── compile3-fail.hxml │ │ │ │ ├── compile4-fail.hxml │ │ │ │ └── compile5-fail.hxml │ │ │ ├── Issue10308 │ │ │ │ └── compile.hxml │ │ │ ├── Issue10329 │ │ │ │ └── compile.hxml │ │ │ └── Issue9428 │ │ │ │ ├── typedefAbstract.hxml │ │ │ │ └── typedefTypedef.hxml │ │ └── run.hxml │ ├── eventLoop │ │ ├── test.html │ │ ├── build-cpp.hxml │ │ └── build-hl.hxml │ ├── weakmap │ │ ├── compile-java.hxml │ │ └── compile-cs.hxml │ ├── compile.hxml │ └── cppObjc │ │ └── build.hxml ├── RunCi.hxml ├── display │ └── src │ │ ├── import.hx │ │ ├── misc │ │ ├── issue7911 │ │ │ ├── Test.hx │ │ │ └── import.hx │ │ └── issue7777 │ │ │ └── Thing.hx │ │ └── cases │ │ └── import.hx ├── sourcemaps │ ├── src │ │ ├── cases │ │ │ └── import.hx │ │ └── validation │ │ │ └── Target.hx │ └── run.hxml ├── TestMakefile.hxml ├── server │ ├── run.hxml │ └── test │ │ └── templates │ │ ├── issues │ │ ├── Issue9423 │ │ │ ├── Mod9423.hx │ │ │ └── Mod9423.whatever.hx │ │ ├── Issue9134 │ │ │ └── Other.hx │ │ ├── Issue11695 │ │ │ ├── Main.hx │ │ │ ├── Macro1.hx │ │ │ └── Macro2.hx │ │ ├── Issue8631 │ │ │ └── Main.hx │ │ └── Issue7697 │ │ │ └── data │ │ │ └── function │ │ │ └── Test.hx │ │ ├── Empty.hx │ │ └── retyper │ │ ├── DependentTypedef.hx │ │ ├── InterfaceDependency.hx │ │ └── WithParentDependency.hx ├── echoServer │ └── build.hxml ├── sys │ └── compile-macro.hxml ├── nullsafety │ └── test-js-es6.hxml └── threads-old │ └── build.hxml ├── dune ├── dune-workspace.dev ├── extra ├── github-actions │ └── build.hxml ├── haxelib_src │ ├── prepare_tests.hxml │ ├── server-start.hxml │ ├── package.hxml │ ├── test │ │ └── libraries │ │ │ └── libBadMetaJson │ │ │ └── doc │ │ │ └── meta.json │ ├── ci.hxml │ ├── run.n │ ├── server_website.hxml │ ├── src │ │ └── legacyhaxelib │ │ │ └── haxelib.sh │ ├── .dockerignore │ ├── client.hxml │ └── hx3compat │ │ └── README.md ├── haxeserver.bat ├── deploy_key.enc ├── haxeci_ssh.enc ├── images │ ├── Banner.bmp │ ├── Readme.png │ └── Wizard.bmp ├── haxeci_sec.gpg.enc └── mac-installer │ └── scripts │ └── neko-preinstall.sh ├── libs ├── objsize │ └── META └── json │ └── dune └── src └── compiler └── serverConfig.ml /debian/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /std/hl/hl_version: -------------------------------------------------------------------------------- 1 | 1.12.0 -------------------------------------------------------------------------------- /tests/unit/res1.txt: -------------------------------------------------------------------------------- 1 | Héllo World ! -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue10844/Fail.hx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dune: -------------------------------------------------------------------------------- 1 | (data_only_dirs extra lib std tests) -------------------------------------------------------------------------------- /tests/RunCi.hxml: -------------------------------------------------------------------------------- 1 | --main RunCi 2 | --interp -------------------------------------------------------------------------------- /tests/misc/es6/extern.js: -------------------------------------------------------------------------------- 1 | class ExtNoCtor {} -------------------------------------------------------------------------------- /tests/misc/projects/Issue3300/dir/keepme: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue4404/src/Empty.hx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue8567/src/test.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /debian/patches/series: -------------------------------------------------------------------------------- 1 | makefile-haxelib.patch 2 | -------------------------------------------------------------------------------- /tests/misc/cs/run.hxml: -------------------------------------------------------------------------------- 1 | -cp ../src 2 | --run Main -------------------------------------------------------------------------------- /tests/misc/lua/run.hxml: -------------------------------------------------------------------------------- 1 | -cp ../src 2 | --run Main -------------------------------------------------------------------------------- /tests/misc/php/run.hxml: -------------------------------------------------------------------------------- 1 | -cp ../src 2 | --run Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue3457/A.hx: -------------------------------------------------------------------------------- 1 | class A {} -------------------------------------------------------------------------------- /tests/misc/projects/display-package/src/C1.hx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /debian/haxe.changelogs: -------------------------------------------------------------------------------- 1 | haxe/extra/CHANGES.txt 2 | -------------------------------------------------------------------------------- /tests/misc/cpp/run.hxml: -------------------------------------------------------------------------------- 1 | -cp ../src 2 | --run Main 3 | -------------------------------------------------------------------------------- /tests/misc/cs/projects/Issue6635/compile.hxml.stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/misc/cs/projects/Issue8589/compile.hxml.stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/misc/flash/run.hxml: -------------------------------------------------------------------------------- 1 | -cp ../src 2 | --run Main -------------------------------------------------------------------------------- /tests/misc/hl/run.hxml: -------------------------------------------------------------------------------- 1 | -cp ../src 2 | --run Main 3 | -------------------------------------------------------------------------------- /tests/misc/java/run.hxml: -------------------------------------------------------------------------------- 1 | -cp ../src 2 | --run Main -------------------------------------------------------------------------------- /tests/misc/js/run.hxml: -------------------------------------------------------------------------------- 1 | -cp ../src 2 | --run Main 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue10184/no-warning.hxml.stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue10711/compile.hxml.stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue10711/lib1/X.hx: -------------------------------------------------------------------------------- 1 | class X {} -------------------------------------------------------------------------------- /tests/misc/projects/Issue10711/lib2/X.hx: -------------------------------------------------------------------------------- 1 | class X {} -------------------------------------------------------------------------------- /tests/misc/projects/Issue10793/compile.hxml.stderr: -------------------------------------------------------------------------------- 1 | foo -------------------------------------------------------------------------------- /tests/misc/projects/Issue10819/compile.hxml.stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue10890/build.hxml: -------------------------------------------------------------------------------- 1 | Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue10897/Types.hx: -------------------------------------------------------------------------------- 1 | enum Bar {} -------------------------------------------------------------------------------- /tests/misc/projects/Issue10935/build.hxml: -------------------------------------------------------------------------------- 1 | Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue11004/build.hxml: -------------------------------------------------------------------------------- 1 | Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue11670/compile.hxml.stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue11737/compile1.hxml.stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue11737/compile2.hxml.stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue3361/compile.hxml: -------------------------------------------------------------------------------- 1 | --run Main3 -------------------------------------------------------------------------------- /tests/misc/projects/Issue3457/Main.hx: -------------------------------------------------------------------------------- 1 | import A in a; -------------------------------------------------------------------------------- /tests/misc/projects/Issue3931/pack/B.hx: -------------------------------------------------------------------------------- 1 | class B { } -------------------------------------------------------------------------------- /tests/misc/projects/Issue4160/compile.hxml.stderr: -------------------------------------------------------------------------------- 1 | foo -------------------------------------------------------------------------------- /tests/misc/projects/Issue4399/compile.hxml.stderr: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /tests/misc/projects/Issue4456/compile.hxml.stderr: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /tests/misc/projects/Issue4563/compile.hxml.stderr: -------------------------------------------------------------------------------- 1 | 4243 -------------------------------------------------------------------------------- /tests/misc/projects/Issue4720/compile2.hxml.stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue5321/Chest.hx: -------------------------------------------------------------------------------- 1 | class Chest { } -------------------------------------------------------------------------------- /tests/misc/projects/Issue5854/compile.hxml.stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue6402/compile.hxml: -------------------------------------------------------------------------------- 1 | --main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue6427/compile.hxml.stderr: -------------------------------------------------------------------------------- 1 | a -------------------------------------------------------------------------------- /tests/misc/projects/Issue6443/compile.hxml.stderr: -------------------------------------------------------------------------------- 1 | ok -------------------------------------------------------------------------------- /tests/misc/projects/Issue6583/compile.hxml: -------------------------------------------------------------------------------- 1 | --main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue6846/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue7210/compile.hxml.stderr: -------------------------------------------------------------------------------- 1 | Ok! -------------------------------------------------------------------------------- /tests/misc/projects/Issue7447/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue8191/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | X1 -------------------------------------------------------------------------------- /tests/misc/projects/Issue8191/compile2-fail.hxml: -------------------------------------------------------------------------------- 1 | X2 -------------------------------------------------------------------------------- /tests/misc/projects/Issue8191/compile3-fail.hxml: -------------------------------------------------------------------------------- 1 | U1 -------------------------------------------------------------------------------- /tests/misc/projects/Issue8191/compile4-fail.hxml: -------------------------------------------------------------------------------- 1 | U2 -------------------------------------------------------------------------------- /tests/misc/projects/Issue8191/compile5-fail.hxml: -------------------------------------------------------------------------------- 1 | U3 -------------------------------------------------------------------------------- /tests/misc/projects/Issue8191/compile6-fail.hxml: -------------------------------------------------------------------------------- 1 | U4 -------------------------------------------------------------------------------- /tests/misc/projects/Issue8191/compile7-fail.hxml: -------------------------------------------------------------------------------- 1 | U5 -------------------------------------------------------------------------------- /tests/misc/projects/Issue8517/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue8705/compile.hxml: -------------------------------------------------------------------------------- 1 | Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue9192/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue9336/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue9342/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue9455/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue9919/compile.hxml.stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/misc/projects/_semver/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/display-package/src/pack/C2.hx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/misc/python/run.hxml: -------------------------------------------------------------------------------- 1 | -cp ../src 2 | --run Main -------------------------------------------------------------------------------- /dune-workspace.dev: -------------------------------------------------------------------------------- 1 | (lang dune 1.11) 2 | (profile release) -------------------------------------------------------------------------------- /tests/misc/neko/run.hxml: -------------------------------------------------------------------------------- 1 | -cp ../src 2 | --run Main 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue10198/compile4.hxml: -------------------------------------------------------------------------------- 1 | --main Main4 -------------------------------------------------------------------------------- /tests/misc/projects/Issue10198/compile5.hxml: -------------------------------------------------------------------------------- 1 | --main Main5 -------------------------------------------------------------------------------- /tests/misc/projects/Issue11286/compile.hxml: -------------------------------------------------------------------------------- 1 | --main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue1138/src2/import.hx: -------------------------------------------------------------------------------- 1 | using B; 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue11670/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue11700/src/Main.hx: -------------------------------------------------------------------------------- 1 | trace(""); 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue11813/compile-without.hxml.stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue3298/test.hxml: -------------------------------------------------------------------------------- 1 | --run Test 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue3300/test-cwd.hxml: -------------------------------------------------------------------------------- 1 | --cwd dir 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue3310/test.hxml: -------------------------------------------------------------------------------- 1 | --run Test 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue3361/compile1-fail.hxml: -------------------------------------------------------------------------------- 1 | --run Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue3417/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue3457/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue3678/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --run Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue3802/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --run Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue4270/test.hxml: -------------------------------------------------------------------------------- 1 | --run Test 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue4370/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | Test 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue4660/compile.hxml: -------------------------------------------------------------------------------- 1 | --run Test 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue4662/compile.hxml: -------------------------------------------------------------------------------- 1 | --run Test 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue5008/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue5145/compile.hxml: -------------------------------------------------------------------------------- 1 | 2 | --main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue5205/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue5880/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue5940/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue5946/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue6006/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue6226/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue6796/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue6810/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | Fail 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue6810/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue6841/compile.hxml: -------------------------------------------------------------------------------- 1 | --run Test 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue6903/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue7108/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue7363/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue7614/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue7638/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue7809/returnVoid.hxml: -------------------------------------------------------------------------------- 1 | ReturnVoid -------------------------------------------------------------------------------- /tests/misc/projects/Issue7905/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue7920/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue8019/compile2-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue8119/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue8159/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue8173/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue8202/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue8258/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue8283/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue8336/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue8354/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Success -------------------------------------------------------------------------------- /tests/misc/projects/Issue8393/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue8404/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue8488/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue8517/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Fail -------------------------------------------------------------------------------- /tests/misc/projects/Issue8530/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue8533/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue8677/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue8697/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue8704/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue8750/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue8752/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue8765/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue8790/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue8819/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue8840/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue9017/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue9061/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue9067/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue9226/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue9243/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue9245/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue9294/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue9295/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue9347/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue9368/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue9378/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue9381/compile.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue9389/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue9417/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue9514/compile.hxml.stderr: -------------------------------------------------------------------------------- 1 | Success -------------------------------------------------------------------------------- /tests/misc/projects/Issue9556/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue9584/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue9769/compile.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue9811/compile.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue9971/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main -------------------------------------------------------------------------------- /tests/misc/projects/display-package/compile1.hxml.stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/misc/projects/issue5002/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/python/projects/Issue11427/build.hxml.stdout: -------------------------------------------------------------------------------- 1 | -5 -------------------------------------------------------------------------------- /tests/misc/python/pythonImport/native_python/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/src/unit/spec/import.hx: -------------------------------------------------------------------------------- 1 | import haxe.macro.Expr; -------------------------------------------------------------------------------- /debian/haxe.manpages: -------------------------------------------------------------------------------- 1 | debian/haxe.1 2 | debian/haxelib.1 3 | -------------------------------------------------------------------------------- /debian/tests/control: -------------------------------------------------------------------------------- 1 | Tests: interp, haxelib 2 | Depends: @ 3 | -------------------------------------------------------------------------------- /extra/github-actions/build.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp 3 | -------------------------------------------------------------------------------- /extra/haxelib_src/prepare_tests.hxml: -------------------------------------------------------------------------------- 1 | -cp test 2 | --run Prepare -------------------------------------------------------------------------------- /tests/display/src/import.hx: -------------------------------------------------------------------------------- 1 | import haxe.display.Diagnostic; 2 | -------------------------------------------------------------------------------- /tests/misc/cs/projects/Issue3526/compile.hxml: -------------------------------------------------------------------------------- 1 | -cs cs 2 | Main -------------------------------------------------------------------------------- /tests/misc/lua/projects/Issue9402/compile.hxml.stderr: -------------------------------------------------------------------------------- 1 | Success -------------------------------------------------------------------------------- /tests/misc/neko/projects/Issue10937/dummy_ndll/ndll/.exists: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue10005/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue10024/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue10034/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue10039/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue10052/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue10184/builtin.hxml: -------------------------------------------------------------------------------- 1 | --run BuiltIn 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue10186/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue10189/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue10198/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue10198/compile2-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main2 -------------------------------------------------------------------------------- /tests/misc/projects/Issue10198/compile3-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main3 -------------------------------------------------------------------------------- /tests/misc/projects/Issue10198/compile6-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main6 -------------------------------------------------------------------------------- /tests/misc/projects/Issue10219/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue10229/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue10264/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue10287/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue10291/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue10325/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue10358/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue10358/compile2-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main2 -------------------------------------------------------------------------------- /tests/misc/projects/Issue10358/compile3-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main3 -------------------------------------------------------------------------------- /tests/misc/projects/Issue10426/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue10504/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue10871/TypeTools/compile.hxml.stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue11334/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue11368/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue1138/compile1.hxml.stderr: -------------------------------------------------------------------------------- 1 | some1some2 -------------------------------------------------------------------------------- /tests/misc/projects/Issue1138/compile2.hxml.stderr: -------------------------------------------------------------------------------- 1 | some1some23 -------------------------------------------------------------------------------- /tests/misc/projects/Issue1138/src1/p2/import.hx: -------------------------------------------------------------------------------- 1 | using B; 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue1138/src3/import.hx: -------------------------------------------------------------------------------- 1 | typedef A = {} 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue11661/compile.hxml: -------------------------------------------------------------------------------- 1 | -m Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue11676/compile.hxml: -------------------------------------------------------------------------------- 1 | -m Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue11682/compile.hxml: -------------------------------------------------------------------------------- 1 | -m Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue11700/.haxelib/mylib/.current: -------------------------------------------------------------------------------- 1 | git 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue11737/Main.hx: -------------------------------------------------------------------------------- 1 | function main() {} 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue2472/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --run Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue2969/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --run Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue3361/compile2-fail.hxml: -------------------------------------------------------------------------------- 1 | --run Main2 -------------------------------------------------------------------------------- /tests/misc/projects/Issue3500/A.hx: -------------------------------------------------------------------------------- 1 | @:bla 2 | abstract A(Int) { } -------------------------------------------------------------------------------- /tests/misc/projects/Issue3710/compile-1-fail.hxml: -------------------------------------------------------------------------------- 1 | --run Main1 -------------------------------------------------------------------------------- /tests/misc/projects/Issue3710/compile-2-fail.hxml: -------------------------------------------------------------------------------- 1 | --run Main2 -------------------------------------------------------------------------------- /tests/misc/projects/Issue3714/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue3726/compile-1-fail.hxml: -------------------------------------------------------------------------------- 1 | --run Main1 -------------------------------------------------------------------------------- /tests/misc/projects/Issue3726/compile-2-fail.hxml: -------------------------------------------------------------------------------- 1 | --run Main2 -------------------------------------------------------------------------------- /tests/misc/projects/Issue3781/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --run Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue3907/compile.hxml: -------------------------------------------------------------------------------- 1 | --display Main.hx@121 -------------------------------------------------------------------------------- /tests/misc/projects/Issue3956/compile.hxml.stderr: -------------------------------------------------------------------------------- 1 | 0 0 2 | 0 1 -------------------------------------------------------------------------------- /tests/misc/projects/Issue4454/compile.hxml.stderr: -------------------------------------------------------------------------------- 1 | Build 1Build 2 -------------------------------------------------------------------------------- /tests/misc/projects/Issue4660/include.js: -------------------------------------------------------------------------------- 1 | "THIS IS INCLUDED"; -------------------------------------------------------------------------------- /tests/misc/projects/Issue5854/compile.hxml: -------------------------------------------------------------------------------- 1 | --run NamedLocal 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue5880/compile.hxml: -------------------------------------------------------------------------------- 1 | --main MainSuccess -------------------------------------------------------------------------------- /tests/misc/projects/Issue5880/compile2-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main2 -------------------------------------------------------------------------------- /tests/misc/projects/Issue5880/compile3-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main3 -------------------------------------------------------------------------------- /tests/misc/projects/Issue5880/compile4-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main4 -------------------------------------------------------------------------------- /tests/misc/projects/Issue5880/compile5-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main5 -------------------------------------------------------------------------------- /tests/misc/projects/Issue5949/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue6005/compile1.hxml: -------------------------------------------------------------------------------- 1 | --display Main.hx@66 -------------------------------------------------------------------------------- /tests/misc/projects/Issue6340/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue6443/compile.hxml: -------------------------------------------------------------------------------- 1 | --macro Main.main() -------------------------------------------------------------------------------- /tests/misc/projects/Issue6583/compile.hxml.stderr: -------------------------------------------------------------------------------- 1 | ChildClass.f -------------------------------------------------------------------------------- /tests/misc/projects/Issue7809/returnEarly-fail.hxml: -------------------------------------------------------------------------------- 1 | ReturnEarly -------------------------------------------------------------------------------- /tests/misc/projects/Issue7809/returnValue-fail.hxml: -------------------------------------------------------------------------------- 1 | ReturnValue -------------------------------------------------------------------------------- /tests/misc/projects/Issue7968/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue7997/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue8088/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Fail 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue8119/compile2-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main2 -------------------------------------------------------------------------------- /tests/misc/projects/Issue8277/compile1-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main1 -------------------------------------------------------------------------------- /tests/misc/projects/Issue8277/compile2-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main2 -------------------------------------------------------------------------------- /tests/misc/projects/Issue8354/compile1-fail.hxml: -------------------------------------------------------------------------------- 1 | -main FailTo -------------------------------------------------------------------------------- /tests/misc/projects/Issue8354/compile2-fail.hxml: -------------------------------------------------------------------------------- 1 | -main FailFrom -------------------------------------------------------------------------------- /tests/misc/projects/Issue8527/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue8534/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | Main.hx 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue8550/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Fail 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue8550/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Success 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue8551/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue8565/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue8579/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue8608/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue8618/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue8697/compile2-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main2 -------------------------------------------------------------------------------- /tests/misc/projects/Issue8750/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main2 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue9015/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue9391/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue9612/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --run Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue9640/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --run Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue9659/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue9676/compile2-fail.hxml: -------------------------------------------------------------------------------- 1 | --main MainExpr -------------------------------------------------------------------------------- /tests/misc/projects/Issue9692/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue9785/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue9796/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/issue5002/compile2-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main2 -------------------------------------------------------------------------------- /tests/misc/projects/issue5002/compile4-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main4 -------------------------------------------------------------------------------- /tests/misc/resolution/run.hxml: -------------------------------------------------------------------------------- 1 | -cp ../src 2 | --run Main 3 | -------------------------------------------------------------------------------- /tests/sourcemaps/src/cases/import.hx: -------------------------------------------------------------------------------- 1 | import Validator.expect; -------------------------------------------------------------------------------- /tests/unit/server.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | neko remoting.n 3 | pause -------------------------------------------------------------------------------- /std/lua/_lua/_hx_print.lua: -------------------------------------------------------------------------------- 1 | _hx_print = print or (function() end) 2 | -------------------------------------------------------------------------------- /tests/TestMakefile.hxml: -------------------------------------------------------------------------------- 1 | --main TestMakefile 2 | -neko TestMakefile.n -------------------------------------------------------------------------------- /tests/misc/compiler_loops/projects/Issue6038/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/compiler_loops/projects/Issue7733/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/compiler_loops/projects/Issue9397/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/cs/projects/Issue4116/compile.hxml: -------------------------------------------------------------------------------- 1 | -cs cs 2 | base.A 3 | -------------------------------------------------------------------------------- /tests/misc/cs/projects/Issue5434/compile.hxml: -------------------------------------------------------------------------------- 1 | Main 2 | -cs bin 3 | -------------------------------------------------------------------------------- /tests/misc/eventLoop/test.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/misc/java/projects/Issue11054/compile.hxml.stdout: -------------------------------------------------------------------------------- 1 | Main.hx:8: 12 -------------------------------------------------------------------------------- /tests/misc/js/projects/Issue10434/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --run Main 2 | -------------------------------------------------------------------------------- /tests/misc/neko/projects/Issue10937/compile.hxml.stdout: -------------------------------------------------------------------------------- 1 | Success 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue10184/no-warning-underscore.hxml.stderr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue10844/user-metas-did-something.hxml.stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue10897/ModuleFields.hx: -------------------------------------------------------------------------------- 1 | function bar() {} 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue11055/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue11193/compile.hxml: -------------------------------------------------------------------------------- 1 | --macro Macro.test() 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue11676/compile.hxml.stdout: -------------------------------------------------------------------------------- 1 | Main.hx:4: [1,2,3] -------------------------------------------------------------------------------- /tests/misc/projects/Issue2263/ImportCompletion.hx: -------------------------------------------------------------------------------- 1 | import MyModule. -------------------------------------------------------------------------------- /tests/misc/projects/Issue2508/compile.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue2995/usage.hxml: -------------------------------------------------------------------------------- 1 | --display Main.hx@83@usage -------------------------------------------------------------------------------- /tests/misc/projects/Issue3238/not-last-fail.hxml: -------------------------------------------------------------------------------- 1 | --run NotLast 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue3238/optional-fail.hxml: -------------------------------------------------------------------------------- 1 | --run Optional 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue3699/compile-var-fail.hxml: -------------------------------------------------------------------------------- 1 | --run MainVar -------------------------------------------------------------------------------- /tests/misc/projects/Issue3931/compile1.hxml: -------------------------------------------------------------------------------- 1 | --display Main1.hx@14 -------------------------------------------------------------------------------- /tests/misc/projects/Issue3931/compile2.hxml: -------------------------------------------------------------------------------- 1 | --display Main2.hx@16 -------------------------------------------------------------------------------- /tests/misc/projects/Issue4293/compile-class-fail.hxml: -------------------------------------------------------------------------------- 1 | --run OnClass -------------------------------------------------------------------------------- /tests/misc/projects/Issue4293/compile-enum-fail.hxml: -------------------------------------------------------------------------------- 1 | --run OnEnum -------------------------------------------------------------------------------- /tests/misc/projects/Issue4293/compile-field-fail.hxml: -------------------------------------------------------------------------------- 1 | --run OnField -------------------------------------------------------------------------------- /tests/misc/projects/Issue4454/compile.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue4679/compile.hxml.stderr: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 3 4 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue4712/compile.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue4712/compile.hxml.stderr: -------------------------------------------------------------------------------- 1 | positive 4294967292 -------------------------------------------------------------------------------- /tests/misc/projects/Issue4720/compile.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue4825/compile.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue5005/compile.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue5122/compile.hxml: -------------------------------------------------------------------------------- 1 | --display Main.hx@125@type -------------------------------------------------------------------------------- /tests/misc/projects/Issue5125/compile.hxml: -------------------------------------------------------------------------------- 1 | --display Main.hx@90@type -------------------------------------------------------------------------------- /tests/misc/projects/Issue5128/compile.hxml: -------------------------------------------------------------------------------- 1 | --display Main.hx@30@type -------------------------------------------------------------------------------- /tests/misc/projects/Issue5134/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --display Main.hx@323 -------------------------------------------------------------------------------- /tests/misc/projects/Issue5152/compile.hxml: -------------------------------------------------------------------------------- 1 | --display Main.hx@87@type -------------------------------------------------------------------------------- /tests/misc/projects/Issue5321/compile.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue6201/compile2-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main2 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue6427/T.hx: -------------------------------------------------------------------------------- 1 | typedef Alias = E; 2 | class T {} -------------------------------------------------------------------------------- /tests/misc/projects/Issue6427/compile.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue6525/compile-fail.hxml.disabled: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue6584/compile1-fail.hxml: -------------------------------------------------------------------------------- 1 | Main1 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue6584/compile2-fail.hxml: -------------------------------------------------------------------------------- 1 | Main2 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue6584/compile3-fail.hxml: -------------------------------------------------------------------------------- 1 | Main3 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue6584/compile4-fail.hxml: -------------------------------------------------------------------------------- 1 | Main4 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue6584/compile5-fail.hxml: -------------------------------------------------------------------------------- 1 | Main5 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue6772/compile.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue6780/double quotes/Double.hx: -------------------------------------------------------------------------------- 1 | class Double {} -------------------------------------------------------------------------------- /tests/misc/projects/Issue6780/single quotes/Single.hx: -------------------------------------------------------------------------------- 1 | class Single {} -------------------------------------------------------------------------------- /tests/misc/projects/Issue7096/compile.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue8019/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --macro Macro.init() -------------------------------------------------------------------------------- /tests/misc/projects/Issue8088/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Success 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue8466/compile.hxml: -------------------------------------------------------------------------------- 1 | --macro Main.init() 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue8618/compile2-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main2 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue8618/compile3-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main3 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue8618/compile4-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main4 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue8697/Main.hx: -------------------------------------------------------------------------------- 1 | typedef Foo = String & {} 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue9010/ChildFields-fail.hxml: -------------------------------------------------------------------------------- 1 | -main ChildFields -------------------------------------------------------------------------------- /tests/misc/projects/Issue9010/NativeMeta-fail.hxml: -------------------------------------------------------------------------------- 1 | -main NativeMeta -------------------------------------------------------------------------------- /tests/misc/projects/Issue9204/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue9425/compile-success.hxml: -------------------------------------------------------------------------------- 1 | --run Main 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue9631/compile-fields-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Fields -------------------------------------------------------------------------------- /tests/misc/projects/Issue9631/compile-types-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Types -------------------------------------------------------------------------------- /tests/misc/projects/Issue9676/compile3-fail.hxml: -------------------------------------------------------------------------------- 1 | --main MainMacro -------------------------------------------------------------------------------- /tests/misc/projects/Issue9712/compile.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue9838/compile.hxml: -------------------------------------------------------------------------------- 1 | --macro Macro.include() -------------------------------------------------------------------------------- /tests/misc/projects/_semver/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main InvalidVersion -------------------------------------------------------------------------------- /tests/misc/projects/display-package/compile2.hxml.stderr: -------------------------------------------------------------------------------- 1 | pack 2 | -------------------------------------------------------------------------------- /tests/misc/projects/issue5002/compile3-fail.hxml: -------------------------------------------------------------------------------- 1 | --macro Main3.init() -------------------------------------------------------------------------------- /tests/misc/python/projects/Issue11060/build.hxml.stdout: -------------------------------------------------------------------------------- 1 | None 2 | -------------------------------------------------------------------------------- /tests/server/run.hxml: -------------------------------------------------------------------------------- 1 | build.hxml 2 | --next 3 | -cmd node test.js -------------------------------------------------------------------------------- /extra/haxelib_src/server-start.hxml: -------------------------------------------------------------------------------- 1 | -cmd nekotools server -rewrite -d www -------------------------------------------------------------------------------- /std/lua/_lua/_hx_random_init.lua: -------------------------------------------------------------------------------- 1 | _G.math.randomseed(_G.os.time()); 2 | -------------------------------------------------------------------------------- /tests/display/src/misc/issue7911/Test.hx: -------------------------------------------------------------------------------- 1 | package misc.issue7911; 2 | 3 | -------------------------------------------------------------------------------- /tests/echoServer/build.hxml: -------------------------------------------------------------------------------- 1 | -main EchoServer 2 | -neko www/echoServer.n -------------------------------------------------------------------------------- /tests/misc/compiler_loops/projects/Issue5189/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/compiler_loops/projects/Issue5345/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/compiler_loops/projects/Issue5345/compile2-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/compiler_loops/projects/Issue5345/compile3-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main -------------------------------------------------------------------------------- /tests/misc/compiler_loops/projects/Issue5785/compile1.hxml: -------------------------------------------------------------------------------- 1 | -main Main1 -------------------------------------------------------------------------------- /tests/misc/compiler_loops/projects/Issue5785/compile3.hxml: -------------------------------------------------------------------------------- 1 | -main Main3 -------------------------------------------------------------------------------- /tests/misc/cs/projects/Issue5915/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Test 2 | -cs bin 3 | -------------------------------------------------------------------------------- /tests/misc/cs/projects/Issue8361/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | -cs bin 3 | -------------------------------------------------------------------------------- /tests/misc/cs/projects/Issue8487/compile.hxml: -------------------------------------------------------------------------------- 1 | -cs bin 2 | -main Main1 3 | -------------------------------------------------------------------------------- /tests/misc/cs/projects/Issue8664/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | -cs bin 3 | -------------------------------------------------------------------------------- /tests/misc/cs/projects/Issue9799/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | -cs bin 3 | -------------------------------------------------------------------------------- /tests/misc/hl/projects/Issue11689/compile.hxml: -------------------------------------------------------------------------------- 1 | -m Main 2 | -hl out/main.c -------------------------------------------------------------------------------- /tests/misc/projects/Issue10139/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue10832/compile.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue10844/user-defines-did-something.hxml.stdout: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue11684/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue11700/.haxelib/mylib/git/src/Main.hx: -------------------------------------------------------------------------------- 1 | Nope 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue11725/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue11813/compile-without.hxml: -------------------------------------------------------------------------------- 1 | -m Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue12098/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue1310/compile1-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main1 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue1968/compile.hxml: -------------------------------------------------------------------------------- 1 | --display Main.hx@145@position -------------------------------------------------------------------------------- /tests/misc/projects/Issue2087/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue2148/compile1-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main1 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue2938/compile.hxml: -------------------------------------------------------------------------------- 1 | --no-inline 2 | --run Main 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue2991/compile.hxml: -------------------------------------------------------------------------------- 1 | --display Main.hx@113@position -------------------------------------------------------------------------------- /tests/misc/projects/Issue2993/compile.hxml: -------------------------------------------------------------------------------- 1 | --display Main.hx@74@position -------------------------------------------------------------------------------- /tests/misc/projects/Issue2995/position.hxml: -------------------------------------------------------------------------------- 1 | --display Main.hx@83@position -------------------------------------------------------------------------------- /tests/misc/projects/Issue2997/compile1.hxml: -------------------------------------------------------------------------------- 1 | --display Main.hx@134@position -------------------------------------------------------------------------------- /tests/misc/projects/Issue3192/compile1-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main1 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue3300/test-cwd-fail.hxml: -------------------------------------------------------------------------------- 1 | --cwd unexistant 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue3783/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue3956/compile.hxml: -------------------------------------------------------------------------------- 1 | -D analyzer 2 | -x Main 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue3975/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue4114/compile1-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main1 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue4114/compile2-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main2 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue4160/compile.hxml: -------------------------------------------------------------------------------- 1 | --main test.Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue4247/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue4250/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue4265/compile.hxml: -------------------------------------------------------------------------------- 1 | -D analyzer 2 | -x Main 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue4265/compile.hxml.stderr: -------------------------------------------------------------------------------- 1 | analyzer removed this -------------------------------------------------------------------------------- /tests/misc/projects/Issue4293/OnEnum.hx: -------------------------------------------------------------------------------- 1 | enum OnEnum { 2 | 3 | } -------------------------------------------------------------------------------- /tests/misc/projects/Issue4293/OnEnumCtor.hx: -------------------------------------------------------------------------------- 1 | enum E { 2 | C(); 3 | } -------------------------------------------------------------------------------- /tests/misc/projects/Issue4293/OnTypedef.hx: -------------------------------------------------------------------------------- 1 | typedef OnTypedef = Int; -------------------------------------------------------------------------------- /tests/misc/projects/Issue4293/compile-abstract-fail.hxml: -------------------------------------------------------------------------------- 1 | --run OnAbstract -------------------------------------------------------------------------------- /tests/misc/projects/Issue4293/compile-enum-ctor-fail.hxml: -------------------------------------------------------------------------------- 1 | --run OnEnumCtor -------------------------------------------------------------------------------- /tests/misc/projects/Issue4293/compile-typedef-fail.hxml: -------------------------------------------------------------------------------- 1 | --run OnTypedef -------------------------------------------------------------------------------- /tests/misc/projects/Issue4378/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue4399/compile.hxml: -------------------------------------------------------------------------------- 1 | -D analyzer 2 | -x Main 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue4448/compile1-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main1 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue4456/compile.hxml: -------------------------------------------------------------------------------- 1 | -D analyzer 2 | -x Main 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue4458/compile-pass1.hxml: -------------------------------------------------------------------------------- 1 | -x Main 2 | -D a=1 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue4458/compile-pass2.hxml: -------------------------------------------------------------------------------- 1 | -x Main 2 | -D b=3 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue4458/compile1-fail.hxml: -------------------------------------------------------------------------------- 1 | -x Main 2 | -D a=2 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue4466/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue4563/compile.hxml: -------------------------------------------------------------------------------- 1 | -D analyzer 2 | -x Main 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue4580/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue4671/compile1-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main1 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue4671/compile2-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main2 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue4689/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue4754/compile1-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main1 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue4761/compile1-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main1 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue4764/compile1-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main1 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue4766/compile1-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main1 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue4775/compile1-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main1 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue4816/compile1-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main1 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue4891/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue4904/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue4907/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue4954/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue4957/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue4982/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue5010/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue5039/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue5039/compile2-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main2 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue5123/compile.hxml: -------------------------------------------------------------------------------- 1 | --display Main.hx@180@position -------------------------------------------------------------------------------- /tests/misc/projects/Issue5206/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue5268/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue5375/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue5559/import.hx: -------------------------------------------------------------------------------- 1 | #if !macro using StringTools; #end -------------------------------------------------------------------------------- /tests/misc/projects/Issue5854/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main UnnamedLocal 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue5924/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue5952/compile1-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue6201/compile1-fail.hxml.disabled: -------------------------------------------------------------------------------- 1 | -main Main1 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue6445/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue6542/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue6550/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue6622/compile1-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main1 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue6699/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue6707/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue6714/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue6757/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Test 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue6765/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue6810/logfile-04-fail.hxml: -------------------------------------------------------------------------------- 1 | compile-fail.hxml 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue6826/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue6878/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue6878/compile1-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main1 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue6922/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Test 2 | --interp 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue6950/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue6965/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue7039/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue7076/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue7210/compile.hxml: -------------------------------------------------------------------------------- 1 | --macro "macro.Utils.hello()" -------------------------------------------------------------------------------- /tests/misc/projects/Issue7227/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue7333/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue7526/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue7669/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue7734/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue7747/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue7752/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue7824/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue7871/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --macro Macro.init() 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue7921/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue7935/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue7935/compile2-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main2 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue7935/compile3-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main3 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue8019/compile3-fail.hxml: -------------------------------------------------------------------------------- 1 | --macro Macro2.init() -------------------------------------------------------------------------------- /tests/misc/projects/Issue8191/U1.hx: -------------------------------------------------------------------------------- 1 | class U1 { 2 | var u = "\u"; 3 | } -------------------------------------------------------------------------------- /tests/misc/projects/Issue8191/U3.hx: -------------------------------------------------------------------------------- 1 | class U3 { 2 | var u = "\u{}"; 3 | } -------------------------------------------------------------------------------- /tests/misc/projects/Issue8191/X1.hx: -------------------------------------------------------------------------------- 1 | class X1 { 2 | var x = "\x"; 3 | } -------------------------------------------------------------------------------- /tests/misc/projects/Issue8191/X2.hx: -------------------------------------------------------------------------------- 1 | class X2 { 2 | var x = "\xfg"; 3 | } -------------------------------------------------------------------------------- /tests/misc/projects/Issue8205/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue8219/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | -php bin -------------------------------------------------------------------------------- /tests/misc/projects/Issue8654/compile.hxml: -------------------------------------------------------------------------------- 1 | Arr 2 | --macro Check.run() -------------------------------------------------------------------------------- /tests/misc/projects/Issue8787/compile1-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main1 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue8787/compile2-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main2 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue9286/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue9390/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue9676/compile1-fail.hxml: -------------------------------------------------------------------------------- 1 | --main MainField 2 | -------------------------------------------------------------------------------- /tests/misc/projects/default_type_params/compile-ctor-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Ctor -------------------------------------------------------------------------------- /tests/misc/projects/display-package/compile3.hxml.stderr: -------------------------------------------------------------------------------- 1 | src.pack 2 | -------------------------------------------------------------------------------- /tests/misc/projects/sys-exit/compile10-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Exiting with 1 -------------------------------------------------------------------------------- /tests/misc/projects/sys-exit/compile11-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Exiting with 1 -------------------------------------------------------------------------------- /tests/server/test/templates/issues/Issue9423/Mod9423.hx: -------------------------------------------------------------------------------- 1 | class Mod9423 {} -------------------------------------------------------------------------------- /tests/unit/src/RootEnum.hx: -------------------------------------------------------------------------------- 1 | enum RootEnum { 2 | A(RootEnum:Int); 3 | } -------------------------------------------------------------------------------- /extra/haxelib_src/package.hxml: -------------------------------------------------------------------------------- 1 | -cp src 2 | -cp hx3compat/std 3 | --run Package -------------------------------------------------------------------------------- /tests/display/src/misc/issue7911/import.hx: -------------------------------------------------------------------------------- 1 | package misc.issue7911; 2 | 3 | -------------------------------------------------------------------------------- /tests/misc/compiler_loops/projects/Issue5785/compile2.hxml: -------------------------------------------------------------------------------- 1 | -main Main2 2 | -------------------------------------------------------------------------------- /tests/misc/compiler_loops/projects/Issue8588/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | -------------------------------------------------------------------------------- /tests/misc/compiler_loops/run.hxml: -------------------------------------------------------------------------------- 1 | -cp ../src 2 | -D timeout=3 3 | --run Main -------------------------------------------------------------------------------- /tests/misc/cs/projects/Issue4116/base/A.hx: -------------------------------------------------------------------------------- 1 | package base; 2 | 3 | class A {} -------------------------------------------------------------------------------- /tests/misc/cs/projects/Issue8487/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -cs bin 2 | -main Main2 3 | -------------------------------------------------------------------------------- /tests/misc/hl/reserved-keywords/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | -hl bin/test.c 3 | -------------------------------------------------------------------------------- /tests/misc/java/projects/Issue11131/compile.hxml.stdout: -------------------------------------------------------------------------------- 1 | 6 2 | 9 3 | 6 4 | 9 -------------------------------------------------------------------------------- /tests/misc/java/projects/Issue9799/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | -java bin 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue10147/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue10152/compile-undefined.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue10482/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue10521/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue10623/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue10687/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue10729/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue10739/compile.hxml.stdout: -------------------------------------------------------------------------------- 1 | Main.hx:7: Success(Perfect!) -------------------------------------------------------------------------------- /tests/misc/projects/Issue10804/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue10825/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue10845/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue10847/good/compile.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue10852/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue10865/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue10880/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue10881/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue10883/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue10961/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue11005/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | -D no-inline 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue11102/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | -D no-inline 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue11737/compile2.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --java bin 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue2278/compile.hxml.disabled: -------------------------------------------------------------------------------- 1 | -main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue3238/default-value-fail.hxml: -------------------------------------------------------------------------------- 1 | --run DefaultValue 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue3830/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main MainFail 2 | --no-output -------------------------------------------------------------------------------- /tests/misc/projects/Issue4070/compile.hxml.disabled: -------------------------------------------------------------------------------- 1 | -main Main 2 | -cpp cpp -------------------------------------------------------------------------------- /tests/misc/projects/Issue4404/src/Child.hx: -------------------------------------------------------------------------------- 1 | class Child extends Base 2 | { 3 | } -------------------------------------------------------------------------------- /tests/misc/projects/Issue4540/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | -js Main.js -------------------------------------------------------------------------------- /tests/misc/projects/Issue4662/_pkg/A.hx: -------------------------------------------------------------------------------- 1 | package _pkg; 2 | 3 | class A {} 4 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue5118/compile1.hxml: -------------------------------------------------------------------------------- 1 | --display Main.hx@156@type 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue5118/compile2.hxml: -------------------------------------------------------------------------------- 1 | --display Main.hx@133@type 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue5843/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | -js bin/test.js 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue6584/Main1.hx: -------------------------------------------------------------------------------- 1 | class Main { 2 | static final v; 3 | } -------------------------------------------------------------------------------- /tests/misc/projects/Issue6938/compile1-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main1 2 | --interp 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue7559/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue8191/U2.hx: -------------------------------------------------------------------------------- 1 | class U2 { 2 | var u = "\u{007f"; 3 | } -------------------------------------------------------------------------------- /tests/misc/projects/Issue8191/U4.hx: -------------------------------------------------------------------------------- 1 | class U4 { 2 | var u = "\u{007g}"; 3 | } -------------------------------------------------------------------------------- /tests/misc/projects/Issue8191/U5.hx: -------------------------------------------------------------------------------- 1 | class U4 { 2 | var u = "\u{110000}"; 3 | } -------------------------------------------------------------------------------- /tests/misc/projects/Issue8241/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --swf main.swf 2 | Main 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue8634/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue8650/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | -D my_ver=2.0 -------------------------------------------------------------------------------- /tests/misc/projects/Issue8892/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | -js bin/test.js -------------------------------------------------------------------------------- /tests/misc/projects/Issue8946/compile.hxml: -------------------------------------------------------------------------------- 1 | -D EMPTY_FLAG= 2 | --run Main 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue8972/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | -js bin/test.js -------------------------------------------------------------------------------- /tests/misc/projects/Issue9010/InterfaceFields-fail.hxml: -------------------------------------------------------------------------------- 1 | -main InterfaceFields -------------------------------------------------------------------------------- /tests/misc/projects/Issue9010/InvalidOverride-fail.hxml: -------------------------------------------------------------------------------- 1 | -main InvalidOverride -------------------------------------------------------------------------------- /tests/misc/projects/Issue9014/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue9163/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue9336/my_template.mtt: -------------------------------------------------------------------------------- 1 |
 
2 | ::foo():: -------------------------------------------------------------------------------- /tests/misc/projects/default_type_params/compile-method-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Method -------------------------------------------------------------------------------- /tests/misc/projects/es6/compile-a-fail.hxml: -------------------------------------------------------------------------------- 1 | A 2 | -js a.js 3 | -D js-es=6 4 | -------------------------------------------------------------------------------- /tests/misc/projects/es6/compile-b-fail.hxml: -------------------------------------------------------------------------------- 1 | B 2 | -js b.js 3 | -D js-es=6 4 | -------------------------------------------------------------------------------- /tests/misc/projects/es6/compile-c-fail.hxml: -------------------------------------------------------------------------------- 1 | C 2 | -js c.js 3 | -D js-es=6 4 | -------------------------------------------------------------------------------- /tests/misc/projects/es6/compile-d-fail.hxml: -------------------------------------------------------------------------------- 1 | D 2 | -js d.js 3 | -D js-es=6 4 | -------------------------------------------------------------------------------- /tests/misc/projects/trailing-commas/compile1.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp 3 | -------------------------------------------------------------------------------- /tests/misc/projects/trailing-commas/compile1.hxml.stdout: -------------------------------------------------------------------------------- 1 | Main.hx:22: 15 2 | -------------------------------------------------------------------------------- /tests/misc/resolution/projects/Issue9189/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main pack.Main 2 | -------------------------------------------------------------------------------- /tests/misc/resolution/projects/spec/ModWithPrivate.hx: -------------------------------------------------------------------------------- 1 | private class A {} 2 | -------------------------------------------------------------------------------- /tests/misc/weakmap/compile-java.hxml: -------------------------------------------------------------------------------- 1 | --main TestWeakMap 2 | -java java 3 | -------------------------------------------------------------------------------- /tests/server/test/templates/issues/Issue9134/Other.hx: -------------------------------------------------------------------------------- 1 | class Other { 2 | } 3 | -------------------------------------------------------------------------------- /tests/sourcemaps/run.hxml: -------------------------------------------------------------------------------- 1 | -cp src 2 | -D eval-stack 3 | -main Test 4 | --interp -------------------------------------------------------------------------------- /tests/sys/compile-macro.hxml: -------------------------------------------------------------------------------- 1 | compile-each.hxml 2 | --main Main 3 | --interp -------------------------------------------------------------------------------- /tests/unit/native_swf/ns1.as: -------------------------------------------------------------------------------- 1 | package { 2 | public namespace ns1; 3 | } 4 | -------------------------------------------------------------------------------- /tests/display/src/cases/import.hx: -------------------------------------------------------------------------------- 1 | package cases; 2 | 3 | // this is stupid 4 | -------------------------------------------------------------------------------- /tests/misc/compiler_loops/projects/Issue10308/compile.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/compiler_loops/projects/Issue10329/compile.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/compiler_loops/projects/Issue8588/compile2-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main2 2 | -------------------------------------------------------------------------------- /tests/misc/compiler_loops/projects/Issue8588/compile3-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main3 2 | -------------------------------------------------------------------------------- /tests/misc/compiler_loops/projects/Issue8588/compile4-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main4 2 | -------------------------------------------------------------------------------- /tests/misc/compiler_loops/projects/Issue8588/compile5-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main5 2 | -------------------------------------------------------------------------------- /tests/misc/cs/projects/Issue3703/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | Test 3 | -cs bin 4 | -------------------------------------------------------------------------------- /tests/misc/cs/projects/Issue8347/compile.hxml: -------------------------------------------------------------------------------- 1 | -cp src 2 | pack.Main 3 | -cs bin 4 | -------------------------------------------------------------------------------- /tests/misc/eventLoop/build-cpp.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --dce full 3 | -cpp cpp 4 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue10107/compile.hxml: -------------------------------------------------------------------------------- 1 | -cp src 2 | -main Main 3 | --interp 4 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue10152/compile-defined.hxml.stdout: -------------------------------------------------------------------------------- 1 | Main.hx:6: EQUAL 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue10170/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -cp src 2 | -main Main 3 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue10245/Main.hx: -------------------------------------------------------------------------------- 1 | @:generic 2 | class Foo extends Foo {} -------------------------------------------------------------------------------- /tests/misc/projects/Issue10587/compile-using-fail.hxml: -------------------------------------------------------------------------------- 1 | --main MainUsing 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue10739/compile.hxml: -------------------------------------------------------------------------------- 1 | -cp src 2 | -main Main 3 | --interp 4 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue10804/compile2-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main2 2 | --interp 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue10844/base-fail.hxml: -------------------------------------------------------------------------------- 1 | -lib dummy_doc 2 | --main Fail 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue10844/user-metas-did-something.hxml: -------------------------------------------------------------------------------- 1 | --help-user-metas 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue10847/bad/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue10897/EnumFields.hx: -------------------------------------------------------------------------------- 1 | enum EnumFields { 2 | bar; 3 | } 4 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue10980/compile.hxml: -------------------------------------------------------------------------------- 1 | -cp src 2 | -main Main 3 | --interp 4 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue11737/_setup.hxml: -------------------------------------------------------------------------------- 1 | --cmd haxelib install --quiet hxjava 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue11737/compile1.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --jvm bin/jvm.jar 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue2263/SubtypeStaticCompletion.hx: -------------------------------------------------------------------------------- 1 | import MyModule.OtherType. -------------------------------------------------------------------------------- /tests/misc/projects/Issue3298/Main.hx: -------------------------------------------------------------------------------- 1 | class Main { static function main() { h } } -------------------------------------------------------------------------------- /tests/misc/projects/Issue4458/compile2-fail.hxml: -------------------------------------------------------------------------------- 1 | -x Main 2 | -D b=3 3 | -D c=4 4 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue4662/Main.hx: -------------------------------------------------------------------------------- 1 | class Main { static function main() { } } -------------------------------------------------------------------------------- /tests/misc/projects/Issue5525/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --js bin/test.js -------------------------------------------------------------------------------- /tests/misc/projects/Issue5856/compile.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --no-output 3 | -js js.js -------------------------------------------------------------------------------- /tests/misc/projects/Issue6427/E.hx: -------------------------------------------------------------------------------- 1 | enum abstract E(String) { 2 | var A = 'a'; 3 | } -------------------------------------------------------------------------------- /tests/misc/projects/Issue7752/compile2-fail.hxml.disabled: -------------------------------------------------------------------------------- 1 | --main Main2 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue7968/Foo.hx: -------------------------------------------------------------------------------- 1 | typedef A = Int; 2 | typedef A = Float; 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue8471/compile.hxml: -------------------------------------------------------------------------------- 1 | --version 2 | --macro Macro.init() 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue8471/compile2.hxml: -------------------------------------------------------------------------------- 1 | --version 2 | --macro Macro2.init() 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue8697/Main2.hx: -------------------------------------------------------------------------------- 1 | typedef Foo = { 2 | > String, 3 | } 4 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue8828/compile1-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main1 2 | -js bin/test.js -------------------------------------------------------------------------------- /tests/misc/projects/Issue8828/compile2-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main2 2 | -js bin/test.js -------------------------------------------------------------------------------- /tests/misc/projects/Issue8828/compile3-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main3 2 | -js bin/test.js -------------------------------------------------------------------------------- /tests/misc/projects/Issue9171/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -cp src 2 | -main Main 3 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue9514/compile.hxml: -------------------------------------------------------------------------------- 1 | -cp src 2 | -main Main 3 | --interp 4 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue9919/compile.hxml: -------------------------------------------------------------------------------- 1 | -cp src 2 | -main Main 3 | --interp 4 | -------------------------------------------------------------------------------- /tests/misc/projects/default_type_params/Method.hx: -------------------------------------------------------------------------------- 1 | function method() {} -------------------------------------------------------------------------------- /tests/misc/projects/default_type_params/compile-enum-ctor-fail.hxml: -------------------------------------------------------------------------------- 1 | --main EnumCtor -------------------------------------------------------------------------------- /tests/misc/projects/sys-exit/compile00.hxml.stderr: -------------------------------------------------------------------------------- 1 | Exiting with 0 2 | Exiting with 0 -------------------------------------------------------------------------------- /tests/misc/python/projects/Issue9256/build.hxml: -------------------------------------------------------------------------------- 1 | -python bin/test.py 2 | --main Main -------------------------------------------------------------------------------- /tests/misc/weakmap/compile-cs.hxml: -------------------------------------------------------------------------------- 1 | --main TestWeakMap 2 | -cs cs 3 | --debug 4 | -------------------------------------------------------------------------------- /tests/nullsafety/test-js-es6.hxml: -------------------------------------------------------------------------------- 1 | test.hxml 2 | -js bin/test-es6.js 3 | -D js-es=6 -------------------------------------------------------------------------------- /tests/server/test/templates/issues/Issue9423/Mod9423.whatever.hx: -------------------------------------------------------------------------------- 1 | class Mod9423 {} -------------------------------------------------------------------------------- /tests/unit/compile-exe-runner.hxml: -------------------------------------------------------------------------------- 1 | -p src 2 | --main RunExe 3 | -neko bin/runexe.n -------------------------------------------------------------------------------- /tests/unit/compile-js.hxml: -------------------------------------------------------------------------------- 1 | compile-each.hxml 2 | unit.TestMain 3 | -js bin/unit.js -------------------------------------------------------------------------------- /debian/haxe.install: -------------------------------------------------------------------------------- 1 | haxe usr/bin 2 | haxelib usr/bin 3 | std/* usr/share/haxe/std 4 | -------------------------------------------------------------------------------- /extra/haxeserver.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | nekotools server -p 2000 -h localhost -d .\ 3 | pause -------------------------------------------------------------------------------- /std/flash/utils/Function.hx: -------------------------------------------------------------------------------- 1 | package flash.utils; 2 | 3 | typedef Function = Dynamic 4 | -------------------------------------------------------------------------------- /tests/misc/compile.hxml: -------------------------------------------------------------------------------- 1 | -p src 2 | #-D MISC_TEST_FILTER=4270 3 | -main Main 4 | --interp -------------------------------------------------------------------------------- /tests/misc/compiler_loops/projects/Issue9428/typedefAbstract.hxml: -------------------------------------------------------------------------------- 1 | -main TypedefAbstract -------------------------------------------------------------------------------- /tests/misc/compiler_loops/projects/Issue9428/typedefTypedef.hxml: -------------------------------------------------------------------------------- 1 | -main TypedefTypedef -------------------------------------------------------------------------------- /tests/misc/cs/projects/Issue5953/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | Reduced 3 | -cs bin 4 | -------------------------------------------------------------------------------- /tests/misc/cs/projects/Issue8366/compile.hxml: -------------------------------------------------------------------------------- 1 | -cs bin 2 | -D unsafe 3 | -main Main 4 | -------------------------------------------------------------------------------- /tests/misc/eventLoop/build-hl.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --dce full 3 | -hl eventLoop.hl 4 | -------------------------------------------------------------------------------- /tests/misc/hl/projects/Issue11196/compile.hxml: -------------------------------------------------------------------------------- 1 | -m Issue11196 2 | -hl out.hl 3 | -dce no -------------------------------------------------------------------------------- /tests/misc/projects/Issue10152/compile-undefined.hxml.stdout: -------------------------------------------------------------------------------- 1 | Main.hx:4: NOT EQUAL 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue10587/compile-import-fail.hxml: -------------------------------------------------------------------------------- 1 | --main MainImport 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue10844/custom-meta.hxml: -------------------------------------------------------------------------------- 1 | -lib dummy_doc 2 | --help-user-metas 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue10844/user-defines-did-something.hxml: -------------------------------------------------------------------------------- 1 | --help-user-defines 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue10871/Compiler/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main MainFail 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue1138/src1/import.hx: -------------------------------------------------------------------------------- 1 | import p2.A; 2 | import p2.A.getSome; 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue11582/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | -D haxe-next 3 | --interp 4 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue11737/compile.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --java bin 3 | -D jvm 4 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue2263/type-completion.hxml: -------------------------------------------------------------------------------- 1 | --display TypeCompletion.hx@52 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue3288/WithoutType.hx: -------------------------------------------------------------------------------- 1 | class SomeType {} 2 | enum OtherType {} 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue4293/OnAbstract.hx: -------------------------------------------------------------------------------- 1 | abstract OnAbstract(T) { 2 | 3 | } -------------------------------------------------------------------------------- /tests/misc/projects/Issue4651/Main.hx: -------------------------------------------------------------------------------- 1 | some 2 | invalid 3 | crap 4 | :-) -------------------------------------------------------------------------------- /tests/misc/projects/Issue4803/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | -js js.js 3 | --no-output -------------------------------------------------------------------------------- /tests/misc/projects/Issue5644/User.hx: -------------------------------------------------------------------------------- 1 | class User extends ThisObviouslyDoesntExist {} -------------------------------------------------------------------------------- /tests/misc/projects/Issue5644/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --no-output 3 | -js js.js -------------------------------------------------------------------------------- /tests/misc/projects/Issue5833/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --no-output 3 | -js js.js -------------------------------------------------------------------------------- /tests/misc/projects/Issue5871/parent-constructor-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main2 2 | --interp 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue5888/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --no-output 3 | -js js.js -------------------------------------------------------------------------------- /tests/misc/projects/Issue6525/pack/IPack.hx: -------------------------------------------------------------------------------- 1 | package pack; 2 | 3 | interface IPack {} -------------------------------------------------------------------------------- /tests/misc/projects/Issue6992/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | -js whatever.js 3 | --no-output -------------------------------------------------------------------------------- /tests/misc/projects/Issue8527/Main.hx: -------------------------------------------------------------------------------- 1 | class Main { 2 | static function main() { 3 | } -------------------------------------------------------------------------------- /tests/misc/projects/Issue9312/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | -js bin/test.js 3 | -D js-es=6 -------------------------------------------------------------------------------- /tests/misc/projects/Issue9389/compile-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Main.hx:3: characters 5-8 : boop -------------------------------------------------------------------------------- /tests/misc/projects/Issue9390/compile-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Main.hx:3: characters 48-49 : hi -------------------------------------------------------------------------------- /tests/misc/projects/Issue9619/abstract-dynamic/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue9619/abstract-final/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue9619/abstract-inline/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue9619/abstract-static/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue9619/super-abstract/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/default_type_params/EnumCtor.hx: -------------------------------------------------------------------------------- 1 | enum E { 2 | C(); 3 | } -------------------------------------------------------------------------------- /tests/misc/projects/display-package/compile3.hxml: -------------------------------------------------------------------------------- 1 | --display src/pack/C2.hx@0@package 2 | -------------------------------------------------------------------------------- /tests/misc/projects/eventLoop/compile.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --dce full 3 | --interp 4 | -------------------------------------------------------------------------------- /tests/misc/projects/local-static/Break/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp 3 | -------------------------------------------------------------------------------- /tests/misc/projects/local-static/Continue/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp 3 | -------------------------------------------------------------------------------- /tests/misc/projects/local-static/Function/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp 3 | -------------------------------------------------------------------------------- /tests/misc/projects/local-static/Local/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp 3 | -------------------------------------------------------------------------------- /tests/misc/projects/local-static/Return/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp 3 | -------------------------------------------------------------------------------- /tests/misc/projects/local-static/This/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp 3 | -------------------------------------------------------------------------------- /tests/misc/projects/sys-exit/compile01-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Exiting with 0 2 | Exiting with 1 -------------------------------------------------------------------------------- /tests/misc/projects/trailing-commas/compile2-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main2 2 | --interp 3 | -------------------------------------------------------------------------------- /tests/misc/projects/trailing-commas/compile3-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main3 2 | --interp 3 | -------------------------------------------------------------------------------- /tests/unit/compile-java-runner.hxml: -------------------------------------------------------------------------------- 1 | -p src 2 | --main RunJava 3 | -neko bin/runjava.n -------------------------------------------------------------------------------- /tests/unit/compile-macro.hxml: -------------------------------------------------------------------------------- 1 | compile-each.hxml 2 | --main unit.TestMain 3 | --interp -------------------------------------------------------------------------------- /tests/unit/compile-php.hxml: -------------------------------------------------------------------------------- 1 | compile-each.hxml 2 | --main unit.TestMain 3 | -php bin/php -------------------------------------------------------------------------------- /tests/unit/native_swf/ns2.as: -------------------------------------------------------------------------------- 1 | package { 2 | public namespace ns2 = "ns2"; 3 | } 4 | -------------------------------------------------------------------------------- /extra/haxelib_src/test/libraries/libBadMetaJson/doc/meta.json: -------------------------------------------------------------------------------- 1 | This is not a json file 2 | -------------------------------------------------------------------------------- /tests/misc/cs/projects/Issue11350/compile.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | -cs bin 3 | -D net-ver=45 4 | -------------------------------------------------------------------------------- /tests/misc/cs/projects/Issue4002/compile.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | -cs bin 3 | -D net-ver=45 4 | -------------------------------------------------------------------------------- /tests/misc/cs/projects/Issue6635/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | -cs bin 3 | -D no-compilation -------------------------------------------------------------------------------- /tests/misc/cs/projects/Issue7875/compile.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | -cs bin 3 | -D net-ver=45 4 | -------------------------------------------------------------------------------- /tests/misc/cs/projects/Issue8589/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | -cs bin 3 | -D no-compilation -------------------------------------------------------------------------------- /tests/misc/es6/run.hxml: -------------------------------------------------------------------------------- 1 | -main Test 2 | -js test.js 3 | -D js-es=6 4 | -cmd node test.js 5 | -------------------------------------------------------------------------------- /tests/misc/hl/projects/Issue11196/Issue11196.hx: -------------------------------------------------------------------------------- 1 | function main() { 2 | var a:hl.I64 = 5; 3 | } -------------------------------------------------------------------------------- /tests/misc/java/projects/Issue2689/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | -java bin 3 | --no-output -------------------------------------------------------------------------------- /tests/misc/java/projects/Issue8444/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | -java bin 3 | -D no-compilation -------------------------------------------------------------------------------- /tests/misc/java/projects/Issue9574/Main.hx: -------------------------------------------------------------------------------- 1 | function main() { 2 | Test.dollarArgName(0); 3 | } -------------------------------------------------------------------------------- /tests/misc/projects/Issue10152/compile-defined.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | -D foo=bar 3 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue10793/compile.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp 3 | -D warn-var-shadowing -------------------------------------------------------------------------------- /tests/misc/projects/Issue10819/compile.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp 3 | -D warn-var-shadowing -------------------------------------------------------------------------------- /tests/misc/projects/Issue10844/custom-define.hxml: -------------------------------------------------------------------------------- 1 | -lib dummy_doc 2 | --help-user-defines 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue10863/reporting-fail.hxml: -------------------------------------------------------------------------------- 1 | Any 2 | -D message.reporting=awesome 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue10897/import-subtype-fail.hxml: -------------------------------------------------------------------------------- 1 | --main ImportSubtype 2 | --interp 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue11368/compile-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Main.hx:3: characters 2-8 : Missing ; -------------------------------------------------------------------------------- /tests/misc/projects/Issue1138/compile1.hxml: -------------------------------------------------------------------------------- 1 | -p src1 2 | -p src2 3 | --main C 4 | --interp 5 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue1138/compile4-fail.hxml: -------------------------------------------------------------------------------- 1 | -p src3 2 | --main Main 3 | --interp 4 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue11813/compile.hxml: -------------------------------------------------------------------------------- 1 | -m Main 2 | -w +WUnsafeEnumEquality 3 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue2232/compile1-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main1 2 | -swf swf.swf 3 | --no-output -------------------------------------------------------------------------------- /tests/misc/projects/Issue2232/compile2-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main2 2 | -swf swf.swf 3 | --no-output -------------------------------------------------------------------------------- /tests/misc/projects/Issue2263/import-completion.hxml: -------------------------------------------------------------------------------- 1 | --display ImportCompletion.hx@16 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue2538/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | -neko neko.n 3 | --no-output -------------------------------------------------------------------------------- /tests/misc/projects/Issue3102/keep-module.hxml: -------------------------------------------------------------------------------- 1 | compile-each.hxml 2 | --macro keep('Main') 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue3181/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | -neko neko.n 3 | --no-output -------------------------------------------------------------------------------- /tests/misc/projects/Issue3300/test-cwd-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Error: Invalid directory: unexistant -------------------------------------------------------------------------------- /tests/misc/projects/Issue3621/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main1 2 | --no-output 3 | -js js.js -------------------------------------------------------------------------------- /tests/misc/projects/Issue4364/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | -neko neko.n 3 | --no-output -------------------------------------------------------------------------------- /tests/misc/projects/Issue4742/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | -neko neko.n 3 | --no-output -------------------------------------------------------------------------------- /tests/misc/projects/Issue4790/compile.hxml.disabled: -------------------------------------------------------------------------------- 1 | -main Main 2 | -js js.js 3 | --no-output -------------------------------------------------------------------------------- /tests/misc/projects/Issue5126/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | -neko neko.n 3 | --no-output -------------------------------------------------------------------------------- /tests/misc/projects/Issue5128/Main.hx: -------------------------------------------------------------------------------- 1 | class Main { 2 | static function main():Void {} 3 | } -------------------------------------------------------------------------------- /tests/misc/projects/Issue5871/parent-no-constructor-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | --interp 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue6030/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main1 2 | --no-output 3 | -js js.js -------------------------------------------------------------------------------- /tests/misc/projects/Issue6065/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | -neko neko.n 3 | --no-output -------------------------------------------------------------------------------- /tests/misc/projects/Issue6435/Main.js.hx: -------------------------------------------------------------------------------- 1 | class Main { 2 | static function main() {} 3 | } -------------------------------------------------------------------------------- /tests/misc/projects/Issue6790/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | -js whatever.js 3 | --no-output 4 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue7017/compile.hxml: -------------------------------------------------------------------------------- 1 | --display Main.hx@86@type 2 | --macro Main.init() -------------------------------------------------------------------------------- /tests/misc/projects/Issue7655/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | -js whatever.js 3 | --no-output 4 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue7871/compile-next-fail.hxml: -------------------------------------------------------------------------------- 1 | compile-fail.hxml 2 | -D haxe-next 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue8527/compile-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Main.hx:3: character 2 : Expected } -------------------------------------------------------------------------------- /tests/misc/projects/Issue8828/Main1.hx: -------------------------------------------------------------------------------- 1 | enum abstract A(Int) { 2 | extern var x = 1; 3 | } -------------------------------------------------------------------------------- /tests/misc/projects/Issue9619/abstract-final-class/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue9619/abstract-interface/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue9619/constructing-abstract/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue9676/MainExpr.hx: -------------------------------------------------------------------------------- 1 | function main() { 2 | final var value:String; 3 | } -------------------------------------------------------------------------------- /tests/misc/projects/display-type/compile.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --display Main.hx@52@type 3 | -------------------------------------------------------------------------------- /tests/misc/projects/inline-constructors/compile-extern-fail.hxml: -------------------------------------------------------------------------------- 1 | Extern 2 | -js extern.js 3 | -------------------------------------------------------------------------------- /tests/misc/projects/local-static/LocalVsLocal/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp 3 | -------------------------------------------------------------------------------- /tests/misc/projects/local-static/LocalVsStatic/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp 3 | -------------------------------------------------------------------------------- /tests/misc/projects/recursive-callbacks/compile.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --macro Main.init() 3 | -------------------------------------------------------------------------------- /tests/misc/python/pythonImport/compile.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | -python test.py 3 | -lib utest -------------------------------------------------------------------------------- /tests/misc/resolution/projects/modulestatics/Duplicate.hx: -------------------------------------------------------------------------------- 1 | function C() {} 2 | class C {} 3 | -------------------------------------------------------------------------------- /tests/threads-old/build.hxml: -------------------------------------------------------------------------------- 1 | -cp src 2 | -D analyzer-optimize 3 | -main Main 4 | -lib utest -------------------------------------------------------------------------------- /tests/unit/native_swf/Lib2.as: -------------------------------------------------------------------------------- 1 | package { 2 | public class Lib2 extends Lib { 3 | } 4 | } 5 | -------------------------------------------------------------------------------- /tests/unit/src/unit/MyInterface.hx: -------------------------------------------------------------------------------- 1 | package unit; 2 | 3 | interface MyInterface 4 | { 5 | } -------------------------------------------------------------------------------- /tests/unit/src/unit/issues/misc/Issue4419External.js: -------------------------------------------------------------------------------- 1 | var Issue4419External = function() { }; -------------------------------------------------------------------------------- /extra/haxelib_src/ci.hxml: -------------------------------------------------------------------------------- 1 | -cp test 2 | -main RunCi 3 | -neko bin/ci.n 4 | -cmd neko bin/ci.n 5 | -------------------------------------------------------------------------------- /tests/misc/cpp/projects/Issue10998/compile.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --cpp bin 3 | -D no-compilation -------------------------------------------------------------------------------- /tests/misc/java/projects/Issue11131/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -cp src 2 | -main MainFail 3 | --jvm run.jar -------------------------------------------------------------------------------- /tests/misc/java/projects/Issue9768/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | --jvm whatever.jar 3 | --no-output -------------------------------------------------------------------------------- /tests/misc/neko/projects/Issue10937/aaa-setup.hxml: -------------------------------------------------------------------------------- 1 | --cmd haxelib dev dummy_ndll dummy_ndll 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue10804/Main.hx: -------------------------------------------------------------------------------- 1 | function main() { 2 | new haxe.ds.Vector(-1); 3 | } 4 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue10844/custom-meta-nofail.hxml: -------------------------------------------------------------------------------- 1 | base-fail.hxml 2 | --help-user-metas 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue10897/ImportSubtype.hx: -------------------------------------------------------------------------------- 1 | import Types.Baz; 2 | 3 | function main() {} 4 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue10897/import-enum-field-fail.hxml: -------------------------------------------------------------------------------- 1 | --main ImportEnumField 2 | --interp 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue10980/compile.hxml.stderr: -------------------------------------------------------------------------------- 1 | Main.hx:14: characters 10-11 : Warning : Int -------------------------------------------------------------------------------- /tests/misc/projects/Issue1138/compile2.hxml: -------------------------------------------------------------------------------- 1 | -p src1 2 | -p src2 3 | --main p2.C2 4 | --interp 5 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue1138/compile3-fail.hxml: -------------------------------------------------------------------------------- 1 | -p src1 2 | -p src2 3 | --main D 4 | --interp 5 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue1138/src3/Main.hx: -------------------------------------------------------------------------------- 1 | class Main { 2 | static function main() {} 3 | } -------------------------------------------------------------------------------- /tests/misc/projects/Issue2278/compile.hxml.stderr: -------------------------------------------------------------------------------- 1 | 9 2 | 6 3 | 6 4 | 12 5 | 9 6 | 6 7 | 6 8 | 12 -------------------------------------------------------------------------------- /tests/misc/projects/Issue3102/keep-pack1.hxml: -------------------------------------------------------------------------------- 1 | compile2-each.hxml 2 | --macro keep('pack1') 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue3102/keep-type.hxml: -------------------------------------------------------------------------------- 1 | compile-each.hxml 2 | --macro keep('Main.Test') 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue3542/Main.hx: -------------------------------------------------------------------------------- 1 | class Main { 2 | static function main() { 3 | 4 | } 5 | } -------------------------------------------------------------------------------- /tests/misc/projects/Issue3782/compile-fail.hxml.disabled: -------------------------------------------------------------------------------- 1 | -main Main 2 | --interp 3 | -D no-analyzer -------------------------------------------------------------------------------- /tests/misc/projects/Issue3931/pack/A.hx: -------------------------------------------------------------------------------- 1 | package pack; 2 | 3 | class A { } 4 | 5 | class C { } -------------------------------------------------------------------------------- /tests/misc/projects/Issue4114/Main1.hx: -------------------------------------------------------------------------------- 1 | class Main { 2 | static function main():String { } 3 | } -------------------------------------------------------------------------------- /tests/misc/projects/Issue4404/compile1.hxml: -------------------------------------------------------------------------------- 1 | -p src 2 | --main Main 3 | -js js.js 4 | --no-output -------------------------------------------------------------------------------- /tests/misc/projects/Issue4651/Main.hx.stdin: -------------------------------------------------------------------------------- 1 | class Main { static function main() { Main. } } 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue4679/compile.hxml: -------------------------------------------------------------------------------- 1 | -m Main 2 | -neko test.n 3 | --cmd "neko test.n" 4 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue4720/compile2.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp 3 | -D no-deprecation-warnings -------------------------------------------------------------------------------- /tests/misc/projects/Issue4803/compile2-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main2 2 | -js js.js 3 | --no-output 4 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue6794/compile.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --display "Main.hx@0@diagnostics" 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue6846/compile.hxml.stderr: -------------------------------------------------------------------------------- 1 | Main.hx:7: characters 9-10 : Warning : Null -------------------------------------------------------------------------------- /tests/misc/projects/Issue7796/Main.hx: -------------------------------------------------------------------------------- 1 | class Main { 2 | static function main() { 3 | } 4 | } 5 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue8364/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | --interp 3 | -D FOO.BAR 4 | -D foo.bar -------------------------------------------------------------------------------- /tests/misc/projects/Issue8579/compile-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Main.hx:8: characters 9-19 : A should be Int -------------------------------------------------------------------------------- /tests/misc/projects/Issue8828/Main2.hx: -------------------------------------------------------------------------------- 1 | enum abstract A(Int) { 2 | public private var x = 1; 3 | } -------------------------------------------------------------------------------- /tests/misc/projects/Issue8828/Main3.hx: -------------------------------------------------------------------------------- 1 | enum abstract A(Int) { 2 | private public var x = 1; 3 | } -------------------------------------------------------------------------------- /tests/misc/projects/Issue9342/compile.hxml.stderr: -------------------------------------------------------------------------------- 1 | Main.hx:3: characters 3-14 : Warning : check pos -------------------------------------------------------------------------------- /tests/misc/projects/Issue9483/Main.hx: -------------------------------------------------------------------------------- 1 | class Main { 2 | static function main() { 3 | 4 | } 5 | } -------------------------------------------------------------------------------- /tests/misc/projects/Issue9619/abstract-expression-inline/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue9619/abstract-with-expression/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue9619/missing-abstract-on-class/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue9619/missing-implementation/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/default_type_params/Ctor.hx: -------------------------------------------------------------------------------- 1 | class C { 2 | function new(){} 3 | } -------------------------------------------------------------------------------- /tests/misc/projects/display-package/compile1.hxml: -------------------------------------------------------------------------------- 1 | -p src 2 | --display src/C1.hx@0@package 3 | -------------------------------------------------------------------------------- /tests/misc/projects/display-type/Main.hx: -------------------------------------------------------------------------------- 1 | class Main { static function main() { var a = ""; a; } } -------------------------------------------------------------------------------- /tests/misc/projects/extern-overloads/not-not-extern/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | --interp 3 | -------------------------------------------------------------------------------- /tests/server/test/templates/Empty.hx: -------------------------------------------------------------------------------- 1 | class Empty { 2 | public static function main() {} 3 | } 4 | -------------------------------------------------------------------------------- /tests/server/test/templates/retyper/DependentTypedef.hx: -------------------------------------------------------------------------------- 1 | typedef DependentTypedef = Dependency; 2 | -------------------------------------------------------------------------------- /tests/server/test/templates/retyper/InterfaceDependency.hx: -------------------------------------------------------------------------------- 1 | interface InterfaceDependency {} 2 | -------------------------------------------------------------------------------- /tests/unit/compile-lua.hxml: -------------------------------------------------------------------------------- 1 | compile-each.hxml 2 | --main unit.TestMain 3 | -lua bin/unit.lua 4 | -------------------------------------------------------------------------------- /tests/unit/src/unit/issues/misc/Issue10174Foo.hx: -------------------------------------------------------------------------------- 1 | package unit.issues.misc; 2 | 3 | class Bar {} -------------------------------------------------------------------------------- /extra/deploy_key.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/haxe-debian/HEAD/extra/deploy_key.enc -------------------------------------------------------------------------------- /extra/haxeci_ssh.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/haxe-debian/HEAD/extra/haxeci_ssh.enc -------------------------------------------------------------------------------- /libs/objsize/META: -------------------------------------------------------------------------------- 1 | version="0.16" 2 | archive(byte)="objsize.cma" 3 | archive(native)="objsize.cmxa" 4 | -------------------------------------------------------------------------------- /tests/misc/cs/projects/Issue4598/compile.hxml: -------------------------------------------------------------------------------- 1 | -cs bin 2 | -main Main 3 | --next 4 | --macro Run.run() -------------------------------------------------------------------------------- /tests/misc/cs/projects/Issue4623/compile.hxml: -------------------------------------------------------------------------------- 1 | -cs bin 2 | -main Main 3 | --next 4 | --macro Run.run() -------------------------------------------------------------------------------- /tests/misc/hl/projects/Issue11689/Main.hx: -------------------------------------------------------------------------------- 1 | function foo(val:hl.Ref) {} 2 | function main() {} -------------------------------------------------------------------------------- /tests/misc/java/projects/Issue10280/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | --jvm jvm.jar 3 | -cmd java -jar jvm.jar -------------------------------------------------------------------------------- /tests/misc/java/projects/Issue10517/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | --jvm whatever.jar 3 | --no-output -------------------------------------------------------------------------------- /tests/misc/java/projects/Issue8322/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | -java bin 3 | -cmd java -jar bin/Main.jar -------------------------------------------------------------------------------- /tests/misc/java/projects/Issue9730/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | --jvm whatever.jar 3 | --no-output -------------------------------------------------------------------------------- /tests/misc/projects/Issue10245/compile-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Main.hx:2: characters 22-28 : Recursive class -------------------------------------------------------------------------------- /tests/misc/projects/Issue10623/indent-fail.hxml: -------------------------------------------------------------------------------- 1 | compile-fail.hxml 2 | -D message.reporting=indent 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue10844/custom-define-nofail.hxml: -------------------------------------------------------------------------------- 1 | base-fail.hxml 2 | --help-user-defines 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue10865/compile-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Main.hx:7: characters 3-4 : Missing return: Int -------------------------------------------------------------------------------- /tests/misc/projects/Issue10897/import-class-field-fail.hxml: -------------------------------------------------------------------------------- 1 | --main ImportClassField 2 | --interp 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue10897/import-module-field-fail.hxml: -------------------------------------------------------------------------------- 1 | --main ImportModuleField 2 | --interp 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue3102/keep-field.hxml: -------------------------------------------------------------------------------- 1 | compile-each.hxml 2 | --macro keep('Main.Test.get12') 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue3102/keep-pack2.hxml: -------------------------------------------------------------------------------- 1 | compile2-each.hxml 2 | --macro keep('pack1.pack2') 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue3288/with-type.hxml: -------------------------------------------------------------------------------- 1 | --display MainWithType.hx@59 2 | -D display-details 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue3542/compile.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | -js js.js 3 | --no-output 4 | --no-inline -------------------------------------------------------------------------------- /tests/misc/projects/Issue4247/compile-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Main.hx:8: characters 4-22 : Incompatible pattern -------------------------------------------------------------------------------- /tests/misc/projects/Issue4293/OnClass.hx: -------------------------------------------------------------------------------- 1 | class OnClass { 2 | static function main() { } 3 | } -------------------------------------------------------------------------------- /tests/misc/projects/Issue4293/OnField.hx: -------------------------------------------------------------------------------- 1 | class OnField { 2 | static function main() { } 3 | } -------------------------------------------------------------------------------- /tests/misc/projects/Issue4370/compile-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Test.hx:9: characters 16-19 : Int should be Bool -------------------------------------------------------------------------------- /tests/misc/projects/Issue4404/src/Base.hx: -------------------------------------------------------------------------------- 1 | @:autoBuild(Macro.build()) 2 | class Base 3 | { 4 | } 5 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue4458/compile1-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Main.hx:4: characters 10-28 : Expected failure -------------------------------------------------------------------------------- /tests/misc/projects/Issue4458/compile2-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Main.hx:4: characters 10-28 : Expected failure -------------------------------------------------------------------------------- /tests/misc/projects/Issue4580/compile-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Main.hx:1: characters 23-27 : Recursive class -------------------------------------------------------------------------------- /tests/misc/projects/Issue4671/compile1-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Main1.hx:1: characters 24-28 : Recursive class -------------------------------------------------------------------------------- /tests/misc/projects/Issue4671/compile2-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Main2.hx:1: characters 17-18 : Recursive class -------------------------------------------------------------------------------- /tests/misc/projects/Issue5010/compile-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Main.hx:9: lines 9-10 : Missing return: String -------------------------------------------------------------------------------- /tests/misc/projects/Issue5949/indent-fail.hxml: -------------------------------------------------------------------------------- 1 | compile-fail.hxml 2 | -D message.reporting=indent 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue6065/indent-fail.hxml: -------------------------------------------------------------------------------- 1 | compile-fail.hxml 2 | -D message.reporting=indent 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue6790/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Mismatch 2 | -js whatever.js 3 | --no-output 4 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue6810/indent-fail.hxml: -------------------------------------------------------------------------------- 1 | compile-fail.hxml 2 | -D message.reporting=indent 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue6950/compile-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Main.hx:8: characters 7-8 : Int should be Bool -------------------------------------------------------------------------------- /tests/misc/projects/Issue7655/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Mismatch 2 | -js whatever.js 3 | --no-output 4 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue7747/compile-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Main.hx:9: characters 9-12 : String should be Int -------------------------------------------------------------------------------- /tests/misc/projects/Issue7905/compile.hxml.stderr: -------------------------------------------------------------------------------- 1 | Main.hx:22: characters 11-18 : Warning : () -> Cls0 -------------------------------------------------------------------------------- /tests/misc/projects/Issue7935/compile2-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Main2.hx:4: characters 2-3 : Expected , or ) -------------------------------------------------------------------------------- /tests/misc/projects/Issue8303/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | -D eval-call-stack-depth=20 3 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue8303/compile.hxml: -------------------------------------------------------------------------------- 1 | -main MainCatch 2 | -D eval-call-stack-depth=20 3 | --interp -------------------------------------------------------------------------------- /tests/misc/projects/Issue8303/indent-fail.hxml: -------------------------------------------------------------------------------- 1 | compile-fail.hxml 2 | -D message.reporting=indent 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue8336/compile-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Main.hx:12: characters 56-58 : connection error -------------------------------------------------------------------------------- /tests/misc/projects/Issue8567/compile.hxml: -------------------------------------------------------------------------------- 1 | -cp src 2 | -main Main 3 | --macro patchTypes("src/test.txt") -------------------------------------------------------------------------------- /tests/misc/projects/Issue8567/src/Main.hx: -------------------------------------------------------------------------------- 1 | class Main { 2 | static function main() { 3 | } 4 | } 5 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue8765/compile-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Main.hx:6: characters 10-21 : EA should be String -------------------------------------------------------------------------------- /tests/misc/projects/Issue8790/compile-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Main.hx:3: characters 7-18 : Int8 should be Int -------------------------------------------------------------------------------- /tests/misc/projects/Issue9243/compile-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Cannot access private type Main in module Main -------------------------------------------------------------------------------- /tests/misc/projects/Issue9296/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | -js bin/test.js 3 | --cmd node bin/test.js -------------------------------------------------------------------------------- /tests/misc/projects/Issue9676/MainMacro.hx: -------------------------------------------------------------------------------- 1 | function main() { 2 | macro final var value:String; 3 | } -------------------------------------------------------------------------------- /tests/misc/projects/Issue9676/compile1D.hxml: -------------------------------------------------------------------------------- 1 | --main MainField 2 | --display "MainField.hx@0@diagnostics" -------------------------------------------------------------------------------- /tests/misc/projects/Issue9676/compile2D.hxml: -------------------------------------------------------------------------------- 1 | --main MainExpr 2 | --display "MainExpr.hx@0@diagnostics" -------------------------------------------------------------------------------- /tests/misc/projects/Issue9676/compile3D.hxml: -------------------------------------------------------------------------------- 1 | --main MainMacro 2 | --display "MainMacro.hx@0@diagnostics" -------------------------------------------------------------------------------- /tests/misc/projects/display-package/compile2.hxml: -------------------------------------------------------------------------------- 1 | -p src 2 | --display src/pack/C2.hx@0@package 3 | -------------------------------------------------------------------------------- /tests/misc/projects/extern-overloads/ambiguous-static/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | --interp 3 | -------------------------------------------------------------------------------- /tests/misc/projects/extern-overloads/amgiuous-call-site/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | --interp 3 | -------------------------------------------------------------------------------- /tests/misc/projects/extern-overloads/not-on-constructor/compile-fail.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | --interp 3 | -------------------------------------------------------------------------------- /tests/misc/python/projects/Issue4218/build.hxml: -------------------------------------------------------------------------------- 1 | -python Test.py 2 | --main Main 3 | -cmd python3 Test.py -------------------------------------------------------------------------------- /tests/server/test/templates/issues/Issue11695/Main.hx: -------------------------------------------------------------------------------- 1 | function main() { 2 | Macro.test(); 3 | } 4 | -------------------------------------------------------------------------------- /tests/server/test/templates/issues/Issue8631/Main.hx: -------------------------------------------------------------------------------- 1 | class Main { 2 | static function main() {} 3 | } -------------------------------------------------------------------------------- /tests/unit/compile-cppia.hxml: -------------------------------------------------------------------------------- 1 | compile-each.hxml 2 | --main unit.TestMain 3 | -cppia bin/unit.cppia 4 | -------------------------------------------------------------------------------- /extra/haxelib_src/run.n: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/haxe-debian/HEAD/extra/haxelib_src/run.n -------------------------------------------------------------------------------- /extra/haxelib_src/server_website.hxml: -------------------------------------------------------------------------------- 1 | server_each.hxml 2 | -main website.Server 3 | -neko www/index.n 4 | -------------------------------------------------------------------------------- /extra/haxelib_src/src/legacyhaxelib/haxelib.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec haxe --run legacyhaxelib.Main "$@" 3 | -------------------------------------------------------------------------------- /extra/images/Banner.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/haxe-debian/HEAD/extra/images/Banner.bmp -------------------------------------------------------------------------------- /extra/images/Readme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/haxe-debian/HEAD/extra/images/Readme.png -------------------------------------------------------------------------------- /extra/images/Wizard.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/haxe-debian/HEAD/extra/images/Wizard.bmp -------------------------------------------------------------------------------- /src/compiler/serverConfig.ml: -------------------------------------------------------------------------------- 1 | let do_not_check_modules = ref false 2 | let legacy_completion = ref false 3 | -------------------------------------------------------------------------------- /std/flash/display/IDrawCommand.hx: -------------------------------------------------------------------------------- 1 | package flash.display; 2 | 3 | extern interface IDrawCommand { 4 | } 5 | -------------------------------------------------------------------------------- /tests/display/src/misc/issue7777/Thing.hx: -------------------------------------------------------------------------------- 1 | package misc.issue7777; 2 | 3 | enum Thing { 4 | BOO; 5 | } 6 | -------------------------------------------------------------------------------- /tests/misc/cs/projects/Issue3526/compile-7.3.hxml: -------------------------------------------------------------------------------- 1 | -cs cs 2 | -D no-compilation 3 | -D cs_ver=7.3 4 | Main -------------------------------------------------------------------------------- /tests/misc/lua/projects/Issue9402/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | -lua bin/test.lua 3 | --cmd lua bin/test.lua -------------------------------------------------------------------------------- /tests/misc/projects/Issue10264/compile-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Main.hx:9: characters 16-35 : Recursive implicit cast -------------------------------------------------------------------------------- /tests/misc/projects/Issue10287/Main.hx: -------------------------------------------------------------------------------- 1 | function foo() return 1; 2 | function main() trace('${foo()blah}'); -------------------------------------------------------------------------------- /tests/misc/projects/Issue10325/compile-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Main.hx:4: characters 3-4 : Cannot assign to final -------------------------------------------------------------------------------- /tests/misc/projects/Issue10587/Macro.hx: -------------------------------------------------------------------------------- 1 | class Macro { 2 | public static macro function foo(e:Expr) {} 3 | } -------------------------------------------------------------------------------- /tests/misc/projects/Issue10852/compile-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Main.hx:3: characters 19-20 : Expected expression -------------------------------------------------------------------------------- /tests/misc/projects/Issue10897/ClassFields.hx: -------------------------------------------------------------------------------- 1 | class ClassFields { 2 | static function bar() {} 3 | } 4 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue10897/ImportClassField.hx: -------------------------------------------------------------------------------- 1 | import ClassFields.baz; 2 | 3 | function main() {} 4 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue10897/ImportEnumField.hx: -------------------------------------------------------------------------------- 1 | import EnumFields.baz; 2 | 3 | function main() {} 4 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue10897/ImportModuleField.hx: -------------------------------------------------------------------------------- 1 | import ModuleFields.baz; 2 | 3 | function main() {} 4 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue10897/import-abstract-field-fail.hxml: -------------------------------------------------------------------------------- 1 | --main ImportAbstractField 2 | --interp 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue2263/subtype-static-completion.hxml: -------------------------------------------------------------------------------- 1 | --display SubtypeStaticCompletion.hx@26 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue2538/compile-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Main.hx:7: characters 13-25 : Cannot use Void as value -------------------------------------------------------------------------------- /tests/misc/projects/Issue3102/keep-module2.hxml: -------------------------------------------------------------------------------- 1 | compile2-each.hxml 2 | --macro keep('pack1.pack2.Test') 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue3102/keep-pack3-fail.hxml: -------------------------------------------------------------------------------- 1 | compile2-each.hxml 2 | --macro keep('pack1.pack3') 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue3288/without-type.hxml: -------------------------------------------------------------------------------- 1 | --display MainWithoutType.hx@62 2 | -D display-details 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue3931/Main1.hx: -------------------------------------------------------------------------------- 1 | @:access(pack. 2 | class Main1 { 3 | static function main() { } 4 | } -------------------------------------------------------------------------------- /tests/misc/projects/Issue4114/compile1-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Main1.hx:2: characters 32-35 : Missing return: String -------------------------------------------------------------------------------- /tests/misc/projects/Issue4114/compile2-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Main2.hx:3: lines 3-5 : Missing return: Unknown<0> -------------------------------------------------------------------------------- /tests/misc/projects/Issue4689/compile-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Main.hx:10: characters 25-26 : Unmatched patterns: B -------------------------------------------------------------------------------- /tests/misc/projects/Issue4742/compile-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Main.hx:3: characters 9-28 : Cannot use Void as value -------------------------------------------------------------------------------- /tests/misc/projects/Issue4766/compile1-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Main1.hx:8: characters 22-26 : Missing this = value -------------------------------------------------------------------------------- /tests/misc/projects/Issue4982/compile-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Main.hx:3: characters 15-30 : Cannot use Void as value -------------------------------------------------------------------------------- /tests/misc/projects/Issue5126/compile-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Main.hx:2: character 54 : Invalid escape sequence \s -------------------------------------------------------------------------------- /tests/misc/projects/Issue5880/compile-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Main.hx:13: characters 3-25 : Int should be Ref -------------------------------------------------------------------------------- /tests/misc/projects/Issue5880/compile3-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Main3.hx:13: characters 3-21 : Int should be Ref3 -------------------------------------------------------------------------------- /tests/misc/projects/Issue5888/compile-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Main.hx:5: characters 5-8 : Int has no field bar 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue6445/compile-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Main.hx:7: characters 10-19 : Cannot add Int and Bool -------------------------------------------------------------------------------- /tests/misc/projects/Issue6542/compile-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Main.hx:6: characters 40-41 : Unknown identifier : _ -------------------------------------------------------------------------------- /tests/misc/projects/Issue6780/compile.hxml: -------------------------------------------------------------------------------- 1 | -cp 'single quotes' 2 | -cp "double quotes" 3 | -main Main 4 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue7752/compile-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Main.hx:2: characters 33-38 : String should be Int -------------------------------------------------------------------------------- /tests/misc/projects/Issue7935/compile-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Main.hx:3: characters 9-10 : Expected expression or ) -------------------------------------------------------------------------------- /tests/misc/projects/Issue7935/compile3-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Main3.hx:4: characters 2-3 : Expected , or ) 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue7968/Main.hx: -------------------------------------------------------------------------------- 1 | import Foo; 2 | class Main { 3 | static function main() { 4 | } 5 | } -------------------------------------------------------------------------------- /tests/misc/projects/Issue8019/compile2-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Main.hx:6: characters 3-19 : Type not found : 0.Foo -------------------------------------------------------------------------------- /tests/misc/projects/Issue8277/compile1-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Main1.hx:8: characters 18-27 : Unmatched patterns: _ -------------------------------------------------------------------------------- /tests/misc/projects/Issue8972/compile-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Main.hx:3: characters 10-21 : Cannot use Void as value -------------------------------------------------------------------------------- /tests/misc/projects/Issue9226/compile-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Main.hx:5: characters 25-37 : String should be Int -------------------------------------------------------------------------------- /tests/misc/projects/Issue9417/compile-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Main.hx:12: characters 5-10 : D has no field round -------------------------------------------------------------------------------- /tests/misc/projects/Issue9631/Fields.hx: -------------------------------------------------------------------------------- 1 | function main() { 2 | 3 | } 4 | 5 | function main() { 6 | 7 | } -------------------------------------------------------------------------------- /tests/misc/projects/Issue9692/Main.hx: -------------------------------------------------------------------------------- 1 | function main() { 2 | var Foo = ""; 3 | trace("" is Foo); 4 | } 5 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue9692/compile-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Main.hx:3: characters 14-17 : Type not found : Foo -------------------------------------------------------------------------------- /tests/misc/projects/extern-overloads/missing-override/compile-fail.hxml.disabled: -------------------------------------------------------------------------------- 1 | -main Main 2 | --interp 3 | -------------------------------------------------------------------------------- /tests/misc/resolution/projects/spec/compile-private-fail.hxml: -------------------------------------------------------------------------------- 1 | -main PrivateImport 2 | -js privateFail.js 3 | -------------------------------------------------------------------------------- /tests/sourcemaps/src/validation/Target.hx: -------------------------------------------------------------------------------- 1 | package validation; 2 | 3 | enum Target { 4 | Js; 5 | Php; 6 | } -------------------------------------------------------------------------------- /extra/haxeci_sec.gpg.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaxeFoundation/haxe-debian/HEAD/extra/haxeci_sec.gpg.enc -------------------------------------------------------------------------------- /extra/haxelib_src/.dockerignore: -------------------------------------------------------------------------------- 1 | uf-content 2 | deploy 3 | bin 4 | test 5 | deploy_key 6 | www/node_modules/ 7 | -------------------------------------------------------------------------------- /extra/haxelib_src/client.hxml: -------------------------------------------------------------------------------- 1 | -cp src 2 | -cp hx3compat/std 3 | -neko run.n 4 | -main haxelib.client.Main 5 | -------------------------------------------------------------------------------- /extra/haxelib_src/hx3compat/README.md: -------------------------------------------------------------------------------- 1 | hx3compat 2 | ========= 3 | 4 | Haxe 4 compatibility lib for haxe 3 5 | -------------------------------------------------------------------------------- /libs/json/dune: -------------------------------------------------------------------------------- 1 | (include_subdirs no) 2 | 3 | (library 4 | (name json) 5 | (preprocess (pps sedlex.ppx)) 6 | ) -------------------------------------------------------------------------------- /std/flash/display/IBitmapDrawable.hx: -------------------------------------------------------------------------------- 1 | package flash.display; 2 | 3 | extern interface IBitmapDrawable { 4 | } 5 | -------------------------------------------------------------------------------- /std/flash/display/IGraphicsData.hx: -------------------------------------------------------------------------------- 1 | package flash.display; 2 | 3 | extern interface IGraphicsData { 4 | } 5 | -------------------------------------------------------------------------------- /std/flash/display/IGraphicsFill.hx: -------------------------------------------------------------------------------- 1 | package flash.display; 2 | 3 | extern interface IGraphicsFill { 4 | } 5 | -------------------------------------------------------------------------------- /std/flash/display/IGraphicsPath.hx: -------------------------------------------------------------------------------- 1 | package flash.display; 2 | 3 | extern interface IGraphicsPath { 4 | } 5 | -------------------------------------------------------------------------------- /std/flash/display/IGraphicsStroke.hx: -------------------------------------------------------------------------------- 1 | package flash.display; 2 | 3 | extern interface IGraphicsStroke { 4 | } 5 | -------------------------------------------------------------------------------- /tests/misc/cppObjc/build.hxml: -------------------------------------------------------------------------------- 1 | -D source-header='' 2 | --main TestObjc 3 | -cpp bin 4 | --debug 5 | -D objc 6 | -------------------------------------------------------------------------------- /tests/misc/java/projects/Issue11014/compile.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --jvm bin/run.jar 3 | --cmd java -jar bin/run.jar -------------------------------------------------------------------------------- /tests/misc/php/projects/Issue10820/compile.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --php bin 3 | 4 | --cmd php bin/index.php 5 | -------------------------------------------------------------------------------- /tests/misc/php/projects/Issue8249/compile.hxml: -------------------------------------------------------------------------------- 1 | -cp src 2 | -main Main 3 | -php bin 4 | --cmd php bin/index.php -------------------------------------------------------------------------------- /tests/misc/projects/Issue10170/compile-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Main.hx:2: characters 8-15 : Unknown identifier : invalid -------------------------------------------------------------------------------- /tests/misc/projects/Issue10184/check-warning.hxml: -------------------------------------------------------------------------------- 1 | # deprecation warnings should show 2 | --run Deprecated 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue10189/compile-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Main.hx:14: characters 11-12 : Unmatched patterns: C(_) -------------------------------------------------------------------------------- /tests/misc/projects/Issue10291/compile-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Main.hx:9: characters 14-23 : Unmatched patterns: Some(_) -------------------------------------------------------------------------------- /tests/misc/projects/Issue10358/Main.hx: -------------------------------------------------------------------------------- 1 | class Main { 2 | static function main() { 3 | var final; 4 | } 5 | } -------------------------------------------------------------------------------- /tests/misc/projects/Issue10587/compile-using-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Macro.hx:2: characters 37-41 : Type not found : Expr -------------------------------------------------------------------------------- /tests/misc/projects/Issue10832/compile.hxml.stdout: -------------------------------------------------------------------------------- 1 | Main.hx:5: main 2 | Main.hx:12: ok 3 | Main.hx:15: stop 4 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue10897/ImportAbstractField.hx: -------------------------------------------------------------------------------- 1 | import AbstractFields.baz; 2 | 3 | function main() {} 4 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue11004/build.hxml.stdout: -------------------------------------------------------------------------------- 1 | Bar.hx:27: @:storedTypedExpr 3 computed this_ident as: foo.bar -------------------------------------------------------------------------------- /tests/misc/projects/Issue2087/Main.hx: -------------------------------------------------------------------------------- 1 | class Main { 2 | static function main() { 3 | haxe.Resauce; 4 | } 5 | } -------------------------------------------------------------------------------- /tests/misc/projects/Issue2087/compile-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Main.hx:3: characters 3-15 : Type not found : haxe.Resauce -------------------------------------------------------------------------------- /tests/misc/projects/Issue3102/keep-module-not-rec-fail.hxml: -------------------------------------------------------------------------------- 1 | compile-each.hxml 2 | --macro keep('Main', false) 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue3102/keep-pack4-fail.hxml: -------------------------------------------------------------------------------- 1 | compile2-each.hxml 2 | --macro keep('pack1.pack2.pack3') 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue3102/keep-type-not-rec.hxml: -------------------------------------------------------------------------------- 1 | compile-each.hxml 2 | --macro keep('Main.Test', false) 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue3288/with-empty-type.hxml: -------------------------------------------------------------------------------- 1 | --display MainWithEmptyType.hx@64 2 | -D display-details 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue3621/compile-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Main1.hx:11: characters 17-18 : Unmatched patterns: E.C -------------------------------------------------------------------------------- /tests/misc/projects/Issue3699/compile-var-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | MainVar.hx:3: characters 13-14 : Expected expression -------------------------------------------------------------------------------- /tests/misc/projects/Issue3714/compile-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Main.hx:7: characters 9-12 : Cannot access private field a -------------------------------------------------------------------------------- /tests/misc/projects/Issue3931/Main2.hx: -------------------------------------------------------------------------------- 1 | @:access(pack.A. 2 | class Main2 { 3 | static function main() { } 4 | } -------------------------------------------------------------------------------- /tests/misc/projects/Issue4580/Main.hx: -------------------------------------------------------------------------------- 1 | class Main implements Main { 2 | public static function main() {} 3 | } -------------------------------------------------------------------------------- /tests/misc/projects/Issue4651/compile.hxml: -------------------------------------------------------------------------------- 1 | -cmd cat Main.hx.stdin | haxe --display Main.hx@43 -D display-stdin -------------------------------------------------------------------------------- /tests/misc/projects/Issue5880/compile2-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Main2.hx:13: characters 3-29 : Int should be Ref2 -------------------------------------------------------------------------------- /tests/misc/projects/Issue5924/compile-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Main.hx:5: characters 11-14 : Int has no field bar 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue6435/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | -js bin/test.js 3 | --display Main.js.hx@0@diagnostics -------------------------------------------------------------------------------- /tests/misc/projects/Issue6550/compile-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Main.hx:4: characters 16-20 : Unknown identifier : var1 -------------------------------------------------------------------------------- /tests/misc/projects/Issue7333/compile-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Main.hx:10: characters 20-21 : Unmatched patterns: A(_) -------------------------------------------------------------------------------- /tests/misc/projects/Issue7809/returnEarly-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | ReturnEarly.hx:3: characters 3-9 : Missing this = value -------------------------------------------------------------------------------- /tests/misc/projects/Issue8119/Main.hx: -------------------------------------------------------------------------------- 1 | class Main { 2 | static public function main() { 3 | "\x80"; 4 | } 5 | } -------------------------------------------------------------------------------- /tests/misc/projects/Issue8159/Main.hx: -------------------------------------------------------------------------------- 1 | @:build(Macro.build()) 2 | class Main { 3 | static function main() {} 4 | } -------------------------------------------------------------------------------- /tests/misc/projects/Issue8277/compile2-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Main2.hx:12: characters 11-16 : Unmatched patterns: A(_) -------------------------------------------------------------------------------- /tests/misc/projects/Issue8550/compile-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Fail.hx:3: characters 9-14 : Cannot use abstract as value -------------------------------------------------------------------------------- /tests/misc/projects/Issue8697/compile-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Main.hx:1: characters 15-21 : Can only extend structures -------------------------------------------------------------------------------- /tests/misc/projects/Issue8697/compile2-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Main2.hx:2: characters 4-10 : Can only extend structures -------------------------------------------------------------------------------- /tests/misc/projects/Issue9171/compile-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Main.hx:5: characters 7-15 : Unknown identifier : nonsense -------------------------------------------------------------------------------- /tests/misc/projects/Issue9785/Main.hx: -------------------------------------------------------------------------------- 1 | abstract Foo({}) { 2 | public var x:Int; 3 | } 4 | 5 | function main() {} -------------------------------------------------------------------------------- /tests/misc/projects/extern-overloads/not-not-extern/Main.hx: -------------------------------------------------------------------------------- 1 | class Main { 2 | overload function test() {} 3 | } -------------------------------------------------------------------------------- /tests/misc/projects/extern-overloads/not-on-constructor/Main.hx: -------------------------------------------------------------------------------- 1 | class Main { 2 | overload function new() {} 3 | } -------------------------------------------------------------------------------- /tests/misc/projects/inline-constructors/compile-force-inline-fail.hxml: -------------------------------------------------------------------------------- 1 | ForceInline 2 | -js force-inline.js 3 | -------------------------------------------------------------------------------- /tests/misc/projects/local-static/Break/compile-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Main.hx:4: characters 19-24 : Break outside loop -------------------------------------------------------------------------------- /tests/misc/projects/trailing-commas/compile2-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Main2.hx:2: characters 56-57 : Unexpected , 2 | -------------------------------------------------------------------------------- /tests/misc/python/projects/Issue11060/Main.hx: -------------------------------------------------------------------------------- 1 | function main() { 2 | trace(new haxe.ds.Vector(1)[0]); 3 | } 4 | -------------------------------------------------------------------------------- /tests/misc/python/projects/Issue8542/build.hxml: -------------------------------------------------------------------------------- 1 | -python bin/test.py 2 | --main Main 3 | -cmd python3 bin/test.py -------------------------------------------------------------------------------- /tests/misc/python/projects/Issue9666/build.hxml: -------------------------------------------------------------------------------- 1 | -python bin/test.py 2 | --main Main 3 | --cmd python3 bin/test.py -------------------------------------------------------------------------------- /tests/misc/resolution/projects/spec/RootModNoMain.hx: -------------------------------------------------------------------------------- 1 | @:build(Macro.build()) class RootModNoMainSubType {} 2 | -------------------------------------------------------------------------------- /tests/server/test/templates/issues/Issue11695/Macro1.hx: -------------------------------------------------------------------------------- 1 | macro function test() return macro trace("before"); 2 | -------------------------------------------------------------------------------- /tests/server/test/templates/issues/Issue11695/Macro2.hx: -------------------------------------------------------------------------------- 1 | macro function test() return macro trace("after"); 2 | -------------------------------------------------------------------------------- /tests/server/test/templates/issues/Issue7697/data/function/Test.hx: -------------------------------------------------------------------------------- 1 | package data.function; 2 | 3 | class Test {} -------------------------------------------------------------------------------- /tests/server/test/templates/retyper/WithParentDependency.hx: -------------------------------------------------------------------------------- 1 | class WithParentDependency extends Dependency {} 2 | -------------------------------------------------------------------------------- /tests/unit/compile-neko.hxml: -------------------------------------------------------------------------------- 1 | compile-each.hxml 2 | -D neko_v2 3 | --main unit.TestMain 4 | -neko bin/unit.n 5 | -------------------------------------------------------------------------------- /extra/mac-installer/scripts/neko-preinstall.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | rm -rf /usr/lib/neko 3 | rm -rf /usr/local/lib/neko 4 | -------------------------------------------------------------------------------- /std/eval/_std/mbedtls/Entropy.hx: -------------------------------------------------------------------------------- 1 | package mbedtls; 2 | 3 | extern class Entropy { 4 | function new():Void; 5 | } 6 | -------------------------------------------------------------------------------- /std/flash/events/WeakFunctionClosure.hx: -------------------------------------------------------------------------------- 1 | package flash.events; 2 | 3 | extern class WeakFunctionClosure { 4 | } 5 | -------------------------------------------------------------------------------- /std/lua/_lua/_hx_apply_self.lua: -------------------------------------------------------------------------------- 1 | _hx_apply_self = function(self, f, ...) 2 | return self[f](self,...) 3 | end 4 | -------------------------------------------------------------------------------- /tests/misc/java/projects/Issue10517/compile-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Main.hx:1: characters 52-73 : Object declaration expected -------------------------------------------------------------------------------- /tests/misc/java/projects/Issue11131/compile.hxml: -------------------------------------------------------------------------------- 1 | -cp src 2 | -main Main 3 | --jvm run.jar 4 | --cmd java -jar run.jar -------------------------------------------------------------------------------- /tests/misc/js/projects/Issue10184/Main.hx: -------------------------------------------------------------------------------- 1 | function main() { 2 | js.Browser.console.log("Hello, World!"); 3 | } 4 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue10358/Main2.hx: -------------------------------------------------------------------------------- 1 | class Main { 2 | static function main() { 3 | var not, final; 4 | } 5 | } -------------------------------------------------------------------------------- /tests/misc/projects/Issue10358/Main3.hx: -------------------------------------------------------------------------------- 1 | class Main { 2 | static function main() { 3 | var final = 0; 4 | } 5 | } -------------------------------------------------------------------------------- /tests/misc/projects/Issue10587/compile-import-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Macro.hx:2: characters 37-41 : Type not found : Expr -------------------------------------------------------------------------------- /tests/misc/projects/Issue10711/Main.hx: -------------------------------------------------------------------------------- 1 | class Main { 2 | static function main() { 3 | var x:X; 4 | } 5 | } -------------------------------------------------------------------------------- /tests/misc/projects/Issue10729/compile-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Main.hx:5: characters 16-17 : Field a needed by IA is missing -------------------------------------------------------------------------------- /tests/misc/projects/Issue10825/compile-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Main.hx:12: characters 3-4 : Uncaught exception Null Access -------------------------------------------------------------------------------- /tests/misc/projects/Issue10863/Main.js.hx: -------------------------------------------------------------------------------- 1 | function main() { 2 | foo(); 3 | } 4 | 5 | macro function foo():Expr; 6 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue10871/Compiler/compile1.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --macro Main.MacroClass.start() 3 | --interp 4 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue10871/Context/compile.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --macro Main.MacroClass.start() 3 | --interp 4 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue10871/TypeTools/compile.hxml: -------------------------------------------------------------------------------- 1 | --main Main 2 | --macro Main.MacroClass.start() 3 | --interp 4 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue1138/compile3-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | src1/D.hx:3: characters 11-17 : Int has no field triple 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue1138/src2/B.hx: -------------------------------------------------------------------------------- 1 | class B { 2 | public static function triple(v:Int):Int return v * 3; 3 | } -------------------------------------------------------------------------------- /tests/misc/projects/Issue12098/compile-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Main.hx:12: characters 10-23 : Err does not have a constructor -------------------------------------------------------------------------------- /tests/misc/projects/Issue3102/compile-each.hxml: -------------------------------------------------------------------------------- 1 | --dce full 2 | -m Main 3 | -neko test.n 4 | --cmd "neko test.n" 5 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue3102/compile2-each.hxml: -------------------------------------------------------------------------------- 1 | --dce full 2 | -m Main2 3 | -neko test.n 4 | -cmd "neko test.n" 5 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue3102/keep-field-not-rec.hxml: -------------------------------------------------------------------------------- 1 | compile-each.hxml 2 | --macro keep('Main.Test.get12', false) 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue3102/keep-pack1-not-rec-fail.hxml: -------------------------------------------------------------------------------- 1 | compile2-each.hxml 2 | --macro keep('pack1', false) 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue3102/keep-pack2-not-rec.hxml: -------------------------------------------------------------------------------- 1 | compile2-each.hxml 2 | --macro keep('pack1.pack2', false) 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue3129/compile.hxml: -------------------------------------------------------------------------------- 1 | --macro addGlobalMetadata('Main', '@:build(Build.build())') 2 | -x Main 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue3710/compile-1-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Main1.hx:3: characters 19-22 : Too many type parameters for A -------------------------------------------------------------------------------- /tests/misc/projects/Issue3710/compile-2-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Main2.hx:3: characters 9-18 : Not enough type parameters for A -------------------------------------------------------------------------------- /tests/misc/projects/Issue4904/compile-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Main.hx:3: characters 16-17 : Cannot access private field f 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue5134/compile-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Main.hx:21: characters 9-10 : Cannot access a in static function -------------------------------------------------------------------------------- /tests/misc/projects/Issue5321/Main.hx: -------------------------------------------------------------------------------- 1 | class Main { 2 | static function main(){ 3 | Test.gt(CHEST); 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue5843/Transform.hx: -------------------------------------------------------------------------------- 1 | package; 2 | 3 | @:genericBuild(Macro.build()) 4 | class Transform {} -------------------------------------------------------------------------------- /tests/misc/projects/Issue5952/compile1-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Main.hx:11: characters 20-24 : doSwitch.T has no field bind -------------------------------------------------------------------------------- /tests/misc/projects/Issue6005/compile1.hxml.stderr: -------------------------------------------------------------------------------- 1 | 2 | Int 3 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue6707/compile-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Main.hx:2: characters 6-7 : Invalid usage of ?, use ?x instead -------------------------------------------------------------------------------- /tests/misc/projects/Issue6765/compile-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Main.hx:8: characters 9-16 : Unknown identifier : my_typo 2 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue6903/compile-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Main.hx:6: lines 6-8 : Assignment overloading is not supported -------------------------------------------------------------------------------- /tests/misc/projects/Issue7108/compile-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Main.hx:6: characters 5-11 : Unknown token (Suggestion: #elseif) -------------------------------------------------------------------------------- /tests/misc/projects/Issue7453/Main.macro.hx: -------------------------------------------------------------------------------- 1 | class Main { 2 | static function getVersion() return macro 1; 3 | } 4 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue7453/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | -js main.js 3 | --no-output 4 | # should just compile 5 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue7734/compile-fail.hxml.stderr: -------------------------------------------------------------------------------- 1 | Main.hx:4: characters 4-7 : Loop variable cannot be modified -------------------------------------------------------------------------------- /tests/misc/projects/Issue7796/compile.hxml: -------------------------------------------------------------------------------- 1 | -main Main 2 | -swf-lib glsl2agal.swc 3 | -swf main.swf 4 | --no-output 5 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue7935/Main.hx: -------------------------------------------------------------------------------- 1 | class Main { 2 | public static function main() { 3 | trace(; 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /tests/misc/projects/Issue8119/Main2.hx: -------------------------------------------------------------------------------- 1 | class Main2 { 2 | static public function main() { 3 | "\200"; 4 | } 5 | } --------------------------------------------------------------------------------