├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── index.js ├── package.json ├── runtime-functions.js ├── scripts └── gen-api.js ├── test └── index.js └── v8 ├── inline-functions-no-underscore.h ├── inline-functions.h ├── runtime-functions-always.h ├── runtime-functions-debugger.h └── runtime.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thlorenz/v8-runtime-functions/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thlorenz/v8-runtime-functions/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thlorenz/v8-runtime-functions/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thlorenz/v8-runtime-functions/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thlorenz/v8-runtime-functions/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thlorenz/v8-runtime-functions/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thlorenz/v8-runtime-functions/HEAD/package.json -------------------------------------------------------------------------------- /runtime-functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thlorenz/v8-runtime-functions/HEAD/runtime-functions.js -------------------------------------------------------------------------------- /scripts/gen-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thlorenz/v8-runtime-functions/HEAD/scripts/gen-api.js -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thlorenz/v8-runtime-functions/HEAD/test/index.js -------------------------------------------------------------------------------- /v8/inline-functions-no-underscore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thlorenz/v8-runtime-functions/HEAD/v8/inline-functions-no-underscore.h -------------------------------------------------------------------------------- /v8/inline-functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thlorenz/v8-runtime-functions/HEAD/v8/inline-functions.h -------------------------------------------------------------------------------- /v8/runtime-functions-always.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thlorenz/v8-runtime-functions/HEAD/v8/runtime-functions-always.h -------------------------------------------------------------------------------- /v8/runtime-functions-debugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thlorenz/v8-runtime-functions/HEAD/v8/runtime-functions-debugger.h -------------------------------------------------------------------------------- /v8/runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thlorenz/v8-runtime-functions/HEAD/v8/runtime.h --------------------------------------------------------------------------------