├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── src ├── AsyncInput.hx ├── Main.hx └── debugger │ └── VSCHaxeServer.hx ├── test cli ├── .gitignore ├── .vscode │ └── launch.json ├── Main.hx └── build.hxml ├── test nme ├── .gitignore ├── .vscode │ └── launch.json ├── Assets │ ├── nme.png │ └── nme.svg ├── DisplayingABitmap.hxproj ├── Source │ └── Main.hx └── project.nmml └── test openfl ├── .gitignore ├── .vscode ├── launch.json └── settings.json ├── Assets └── openfl.png ├── DisplayingABitmap.hxproj ├── Source └── Main.hx ├── build.hxml └── project.xml /.gitignore: -------------------------------------------------------------------------------- 1 | bin/* 2 | /.vscode 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcward/vscode-hxcpp-debug/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcward/vscode-hxcpp-debug/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcward/vscode-hxcpp-debug/HEAD/package.json -------------------------------------------------------------------------------- /src/AsyncInput.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcward/vscode-hxcpp-debug/HEAD/src/AsyncInput.hx -------------------------------------------------------------------------------- /src/Main.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcward/vscode-hxcpp-debug/HEAD/src/Main.hx -------------------------------------------------------------------------------- /src/debugger/VSCHaxeServer.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcward/vscode-hxcpp-debug/HEAD/src/debugger/VSCHaxeServer.hx -------------------------------------------------------------------------------- /test cli/.gitignore: -------------------------------------------------------------------------------- 1 | export/* 2 | -------------------------------------------------------------------------------- /test cli/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcward/vscode-hxcpp-debug/HEAD/test cli/.vscode/launch.json -------------------------------------------------------------------------------- /test cli/Main.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcward/vscode-hxcpp-debug/HEAD/test cli/Main.hx -------------------------------------------------------------------------------- /test cli/build.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcward/vscode-hxcpp-debug/HEAD/test cli/build.hxml -------------------------------------------------------------------------------- /test nme/.gitignore: -------------------------------------------------------------------------------- 1 | Export/* 2 | -------------------------------------------------------------------------------- /test nme/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcward/vscode-hxcpp-debug/HEAD/test nme/.vscode/launch.json -------------------------------------------------------------------------------- /test nme/Assets/nme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcward/vscode-hxcpp-debug/HEAD/test nme/Assets/nme.png -------------------------------------------------------------------------------- /test nme/Assets/nme.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcward/vscode-hxcpp-debug/HEAD/test nme/Assets/nme.svg -------------------------------------------------------------------------------- /test nme/DisplayingABitmap.hxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcward/vscode-hxcpp-debug/HEAD/test nme/DisplayingABitmap.hxproj -------------------------------------------------------------------------------- /test nme/Source/Main.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcward/vscode-hxcpp-debug/HEAD/test nme/Source/Main.hx -------------------------------------------------------------------------------- /test nme/project.nmml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcward/vscode-hxcpp-debug/HEAD/test nme/project.nmml -------------------------------------------------------------------------------- /test openfl/.gitignore: -------------------------------------------------------------------------------- 1 | Export/* 2 | -------------------------------------------------------------------------------- /test openfl/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcward/vscode-hxcpp-debug/HEAD/test openfl/.vscode/launch.json -------------------------------------------------------------------------------- /test openfl/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcward/vscode-hxcpp-debug/HEAD/test openfl/.vscode/settings.json -------------------------------------------------------------------------------- /test openfl/Assets/openfl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcward/vscode-hxcpp-debug/HEAD/test openfl/Assets/openfl.png -------------------------------------------------------------------------------- /test openfl/DisplayingABitmap.hxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcward/vscode-hxcpp-debug/HEAD/test openfl/DisplayingABitmap.hxproj -------------------------------------------------------------------------------- /test openfl/Source/Main.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcward/vscode-hxcpp-debug/HEAD/test openfl/Source/Main.hx -------------------------------------------------------------------------------- /test openfl/build.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcward/vscode-hxcpp-debug/HEAD/test openfl/build.hxml -------------------------------------------------------------------------------- /test openfl/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcward/vscode-hxcpp-debug/HEAD/test openfl/project.xml --------------------------------------------------------------------------------