- 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
- 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
>400
to filter out generated runtime functions)