17ab6c288b
LOG=N R=machenbach@chromium.org Review URL: https://codereview.chromium.org/1385873002 Cr-Commit-Position: refs/heads/master@{#31101}
8 lines
384 B
Markdown
8 lines
384 B
Markdown
# Runtime functions
|
|
|
|
Much of the JavaScript library is implemented in JavaScript code itself,
|
|
using a minimal set of C++ runtime functions callable from JavaScript.
|
|
Some of these are called using names that start with %, and using the flag
|
|
"--allow-natives-syntax". Others are only called by code generated by the
|
|
code generators, and are not visible in JS, even using the % syntax.
|