| Index: src/runtime/runtime.h
|
| diff --git a/src/runtime/runtime.h b/src/runtime/runtime.h
|
| index 5d6ccac709f235e85cc87230283e63cb7174505b..5622b60658959242e5f99d5b2df25f7136f815e9 100644
|
| --- a/src/runtime/runtime.h
|
| +++ b/src/runtime/runtime.h
|
| @@ -199,7 +199,8 @@ namespace internal {
|
| F(StoreToSuper_Strict, 4, 1) \
|
| F(StoreToSuper_Sloppy, 4, 1) \
|
| F(StoreKeyedToSuper_Strict, 4, 1) \
|
| - F(StoreKeyedToSuper_Sloppy, 4, 1)
|
| + F(StoreKeyedToSuper_Sloppy, 4, 1) \
|
| + F(DefaultConstructorSuperCall, 0, 1)
|
|
|
|
|
| #define RUNTIME_FUNCTION_LIST_ALWAYS_2(F) \
|
| @@ -828,6 +829,9 @@ class Runtime : public AllStatic {
|
| MUST_USE_RESULT static MaybeHandle<Object> GetObjectProperty(
|
| Isolate* isolate, Handle<Object> object, Handle<Object> key);
|
|
|
| + MUST_USE_RESULT static MaybeHandle<Object> GetPrototype(
|
| + Isolate* isolate, Handle<Object> object);
|
| +
|
| MUST_USE_RESULT static MaybeHandle<Name> ToName(Isolate* isolate,
|
| Handle<Object> key);
|
|
|
|
|