diff options
Diffstat (limited to 'deps/v8/src/runtime.h')
-rw-r--r-- | deps/v8/src/runtime.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/deps/v8/src/runtime.h b/deps/v8/src/runtime.h index 26a2b9df24..312907adc5 100644 --- a/deps/v8/src/runtime.h +++ b/deps/v8/src/runtime.h @@ -162,6 +162,7 @@ namespace internal { F(RegExpExecMultiple, 4, 1) \ F(RegExpInitializeObject, 5, 1) \ F(RegExpConstructResult, 3, 1) \ + F(RegExpCloneResult, 1, 1) \ \ /* Strings */ \ F(StringCharCodeAt, 2, 1) \ @@ -173,6 +174,7 @@ namespace internal { F(StringMatch, 3, 1) \ F(StringTrim, 3, 1) \ F(StringToArray, 1, 1) \ + F(NewStringWrapper, 1, 1) \ \ /* Numbers */ \ F(NumberToRadixString, 2, 1) \ @@ -200,6 +202,7 @@ namespace internal { \ F(ClassOf, 1, 1) \ F(SetCode, 2, 1) \ + F(SetExpectedNumberOfProperties, 2, 1) \ \ F(CreateApiFunction, 1, 1) \ F(IsTemplate, 1, 1) \ @@ -418,7 +421,7 @@ class Runtime : public AllStatic { static Function* FunctionForId(FunctionId fid); // Get the runtime function with the given name. - static Function* FunctionForName(const char* name); + static Function* FunctionForName(Vector<const char> name); static int StringMatch(Handle<String> sub, Handle<String> pat, int index); |