├── .gitignore ├── CMakeLists.txt ├── README.md ├── helloworld.cc └── shell ├── exposeToJsFuncs.cpp ├── exposeToJsVar.cpp ├── interceptor.cpp ├── load.js ├── shell.cpp ├── shell.h └── shell_util.cpp /.gitignore: -------------------------------------------------------------------------------- 1 | cmake-build-debug 2 | .DS_Store 3 | .idea 4 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxiaowu66/v8-demo/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxiaowu66/v8-demo/HEAD/README.md -------------------------------------------------------------------------------- /helloworld.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxiaowu66/v8-demo/HEAD/helloworld.cc -------------------------------------------------------------------------------- /shell/exposeToJsFuncs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxiaowu66/v8-demo/HEAD/shell/exposeToJsFuncs.cpp -------------------------------------------------------------------------------- /shell/exposeToJsVar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxiaowu66/v8-demo/HEAD/shell/exposeToJsVar.cpp -------------------------------------------------------------------------------- /shell/interceptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxiaowu66/v8-demo/HEAD/shell/interceptor.cpp -------------------------------------------------------------------------------- /shell/load.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxiaowu66/v8-demo/HEAD/shell/load.js -------------------------------------------------------------------------------- /shell/shell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxiaowu66/v8-demo/HEAD/shell/shell.cpp -------------------------------------------------------------------------------- /shell/shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxiaowu66/v8-demo/HEAD/shell/shell.h -------------------------------------------------------------------------------- /shell/shell_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linxiaowu66/v8-demo/HEAD/shell/shell_util.cpp --------------------------------------------------------------------------------