V8 runtime functions
October 23, 2018 ยท View on GitHub
- V8 JS lib uses minimal set of C+ runtime functions (callable from JavaScript)
- lots of these have names starting with
%and are visible - others aren't visible as they are only called by generated code
- they are defined inside v8/runtime.h
- test for these can be found here
Usage
- allow access via
--allow-natives-syntax - example test using runtime functions
- examples on how to use them can be found inside v8
tests (size set to
>400to filter out generated runtime functions)