├── .gitignore ├── .vscode └── launch.json ├── README.md ├── bin ├── CodeEval.d.ts ├── CodeEval.js ├── Hook.d.ts ├── Hook.js ├── Log.d.ts ├── Log.js ├── TextStorage.d.ts ├── TextStorage.js ├── fileControl.d.ts ├── fileControl.js ├── proxy.d.ts ├── proxy.js ├── stringify.d.ts ├── stringify.js ├── tmp.d.ts ├── tmp.js ├── toStringNative.d.ts ├── toStringNative.js ├── utiles.d.ts ├── utiles.js ├── wasmTrace.d.ts └── wasmTrace.js ├── dist └── trace.js ├── package.json ├── script ├── StackTrace.md ├── image-1.png └── image.png ├── src ├── CodeEval.ts ├── Hook.ts ├── Log.ts ├── TextStorage.ts ├── fileControl.ts ├── proxy.ts ├── stringify.ts ├── test.wasm ├── tmp.ts ├── toStringNative.ts └── utiles.ts ├── tsconfig.json └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nothing-2333/ToDoReverseJS/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nothing-2333/ToDoReverseJS/HEAD/README.md -------------------------------------------------------------------------------- /bin/CodeEval.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nothing-2333/ToDoReverseJS/HEAD/bin/CodeEval.d.ts -------------------------------------------------------------------------------- /bin/CodeEval.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nothing-2333/ToDoReverseJS/HEAD/bin/CodeEval.js -------------------------------------------------------------------------------- /bin/Hook.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nothing-2333/ToDoReverseJS/HEAD/bin/Hook.d.ts -------------------------------------------------------------------------------- /bin/Hook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nothing-2333/ToDoReverseJS/HEAD/bin/Hook.js -------------------------------------------------------------------------------- /bin/Log.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nothing-2333/ToDoReverseJS/HEAD/bin/Log.d.ts -------------------------------------------------------------------------------- /bin/Log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nothing-2333/ToDoReverseJS/HEAD/bin/Log.js -------------------------------------------------------------------------------- /bin/TextStorage.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nothing-2333/ToDoReverseJS/HEAD/bin/TextStorage.d.ts -------------------------------------------------------------------------------- /bin/TextStorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nothing-2333/ToDoReverseJS/HEAD/bin/TextStorage.js -------------------------------------------------------------------------------- /bin/fileControl.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nothing-2333/ToDoReverseJS/HEAD/bin/fileControl.d.ts -------------------------------------------------------------------------------- /bin/fileControl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nothing-2333/ToDoReverseJS/HEAD/bin/fileControl.js -------------------------------------------------------------------------------- /bin/proxy.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nothing-2333/ToDoReverseJS/HEAD/bin/proxy.d.ts -------------------------------------------------------------------------------- /bin/proxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nothing-2333/ToDoReverseJS/HEAD/bin/proxy.js -------------------------------------------------------------------------------- /bin/stringify.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nothing-2333/ToDoReverseJS/HEAD/bin/stringify.d.ts -------------------------------------------------------------------------------- /bin/stringify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nothing-2333/ToDoReverseJS/HEAD/bin/stringify.js -------------------------------------------------------------------------------- /bin/tmp.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nothing-2333/ToDoReverseJS/HEAD/bin/tmp.d.ts -------------------------------------------------------------------------------- /bin/tmp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nothing-2333/ToDoReverseJS/HEAD/bin/tmp.js -------------------------------------------------------------------------------- /bin/toStringNative.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/toStringNative.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nothing-2333/ToDoReverseJS/HEAD/bin/toStringNative.js -------------------------------------------------------------------------------- /bin/utiles.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nothing-2333/ToDoReverseJS/HEAD/bin/utiles.d.ts -------------------------------------------------------------------------------- /bin/utiles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nothing-2333/ToDoReverseJS/HEAD/bin/utiles.js -------------------------------------------------------------------------------- /bin/wasmTrace.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /bin/wasmTrace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nothing-2333/ToDoReverseJS/HEAD/bin/wasmTrace.js -------------------------------------------------------------------------------- /dist/trace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nothing-2333/ToDoReverseJS/HEAD/dist/trace.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nothing-2333/ToDoReverseJS/HEAD/package.json -------------------------------------------------------------------------------- /script/StackTrace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nothing-2333/ToDoReverseJS/HEAD/script/StackTrace.md -------------------------------------------------------------------------------- /script/image-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nothing-2333/ToDoReverseJS/HEAD/script/image-1.png -------------------------------------------------------------------------------- /script/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nothing-2333/ToDoReverseJS/HEAD/script/image.png -------------------------------------------------------------------------------- /src/CodeEval.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nothing-2333/ToDoReverseJS/HEAD/src/CodeEval.ts -------------------------------------------------------------------------------- /src/Hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nothing-2333/ToDoReverseJS/HEAD/src/Hook.ts -------------------------------------------------------------------------------- /src/Log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nothing-2333/ToDoReverseJS/HEAD/src/Log.ts -------------------------------------------------------------------------------- /src/TextStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nothing-2333/ToDoReverseJS/HEAD/src/TextStorage.ts -------------------------------------------------------------------------------- /src/fileControl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nothing-2333/ToDoReverseJS/HEAD/src/fileControl.ts -------------------------------------------------------------------------------- /src/proxy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nothing-2333/ToDoReverseJS/HEAD/src/proxy.ts -------------------------------------------------------------------------------- /src/stringify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nothing-2333/ToDoReverseJS/HEAD/src/stringify.ts -------------------------------------------------------------------------------- /src/test.wasm: -------------------------------------------------------------------------------- 1 | asm` 2 | addTwo 3 |  j 4 | name -------------------------------------------------------------------------------- /src/tmp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nothing-2333/ToDoReverseJS/HEAD/src/tmp.ts -------------------------------------------------------------------------------- /src/toStringNative.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nothing-2333/ToDoReverseJS/HEAD/src/toStringNative.ts -------------------------------------------------------------------------------- /src/utiles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nothing-2333/ToDoReverseJS/HEAD/src/utiles.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nothing-2333/ToDoReverseJS/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nothing-2333/ToDoReverseJS/HEAD/webpack.config.js --------------------------------------------------------------------------------