diff options
Diffstat (limited to 'deps/v8/src/runtime.h')
-rw-r--r-- | deps/v8/src/runtime.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/deps/v8/src/runtime.h b/deps/v8/src/runtime.h index a42b3bc4b..a52672ad7 100644 --- a/deps/v8/src/runtime.h +++ b/deps/v8/src/runtime.h @@ -209,10 +209,13 @@ namespace internal { /* Reflection */ \ F(FunctionSetInstanceClassName, 2, 1) \ F(FunctionSetLength, 2, 1) \ + F(BoundFunctionSetLength, 2, 1) \ F(FunctionSetPrototype, 2, 1) \ F(FunctionSetReadOnlyPrototype, 1, 1) \ F(FunctionGetName, 1, 1) \ F(FunctionSetName, 2, 1) \ + F(FunctionNameShouldPrintAsAnonymous, 1, 1) \ + F(FunctionMarkNameShouldPrintAsAnonymous, 1, 1) \ F(FunctionSetBound, 1, 1) \ F(FunctionRemovePrototype, 1, 1) \ F(FunctionGetSourceCode, 1, 1) \ @@ -287,6 +290,11 @@ namespace internal { F(GetHandler, 1, 1) \ F(Fix, 1, 1) \ \ + /* Harmony weakmaps */ \ + F(WeakMapInitialize, 1, 1) \ + F(WeakMapGet, 2, 1) \ + F(WeakMapSet, 3, 1) \ + \ /* Statements */ \ F(NewClosure, 3, 1) \ F(NewObject, 1, 1) \ |