| Index: src/runtime.h
|
| ===================================================================
|
| --- src/runtime.h (revision 3964)
|
| +++ src/runtime.h (working copy)
|
| @@ -60,6 +60,7 @@
|
| F(GetArgumentsProperty, 1, 1) \
|
| F(ToFastProperties, 1, 1) \
|
| F(ToSlowProperties, 1, 1) \
|
| + F(FinishArrayPrototypeSetup, 1, 1) \
|
| \
|
| F(IsInPrototypeChain, 2, 1) \
|
| F(SetHiddenPrototype, 2, 1) \
|
| @@ -142,6 +143,7 @@
|
| F(Math_floor, 1, 1) \
|
| F(Math_log, 1, 1) \
|
| F(Math_pow, 2, 1) \
|
| + F(Math_pow_cfunction, 2, 1) \
|
| F(Math_round, 1, 1) \
|
| F(Math_sin, 1, 1) \
|
| F(Math_sqrt, 1, 1) \
|
| @@ -161,6 +163,7 @@
|
| F(StringReplaceRegExpWithString, 4, 1) \
|
| F(StringMatch, 3, 1) \
|
| F(StringTrim, 3, 1) \
|
| + F(StringToArray, 1, 1) \
|
| \
|
| /* Numbers */ \
|
| F(NumberToRadixString, 2, 1) \
|
| @@ -200,6 +203,7 @@
|
| F(DateLocalTimezone, 1, 1) \
|
| F(DateLocalTimeOffset, 0, 1) \
|
| F(DateDaylightSavingsOffset, 1, 1) \
|
| + F(DateMakeDay, 3, 1) \
|
| \
|
| /* Numbers */ \
|
| F(NumberIsFinite, 1, 1) \
|
| @@ -321,7 +325,14 @@
|
| F(SystemBreak, 0, 1) \
|
| F(DebugDisassembleFunction, 1, 1) \
|
| F(DebugDisassembleConstructor, 1, 1) \
|
| - F(FunctionGetInferredName, 1, 1)
|
| + F(FunctionGetInferredName, 1, 1) \
|
| + F(LiveEditFindSharedFunctionInfosForScript, 1, 1) \
|
| + F(LiveEditGatherCompileInfo, 2, 1) \
|
| + F(LiveEditReplaceScript, 3, 1) \
|
| + F(LiveEditReplaceFunctionCode, 2, 1) \
|
| + F(LiveEditRelinkFunctionToScript, 2, 1) \
|
| + F(LiveEditPatchFunctionPositions, 2, 1) \
|
| + F(LiveEditCheckStackActivations, 1, 1)
|
| #else
|
| #define RUNTIME_FUNCTION_LIST_DEBUGGER_SUPPORT(F)
|
| #endif
|
| @@ -400,6 +411,7 @@
|
| // Support getting the characters in a string using [] notation as
|
| // in Firefox/SpiderMonkey, Safari and Opera.
|
| static Object* GetElementOrCharAt(Handle<Object> object, uint32_t index);
|
| + static Object* GetElement(Handle<Object> object, uint32_t index);
|
|
|
| static Object* SetObjectProperty(Handle<Object> object,
|
| Handle<Object> key,
|
|
|