| Index: src/runtime/runtime.h
|
| diff --git a/src/runtime/runtime.h b/src/runtime/runtime.h
|
| index 4c3752b4a174b2a8a3885c51742631d20c3512c0..c0110fa4d6dd17e9fda12443545361d17ad8cd24 100644
|
| --- a/src/runtime/runtime.h
|
| +++ b/src/runtime/runtime.h
|
| @@ -186,18 +186,19 @@ namespace internal {
|
| /* Classes support */ \
|
| F(ToMethod, 2, 1) \
|
| F(HomeObjectSymbol, 0, 1) \
|
| + F(DefaultConstructorSuperCall, 0, 1) \
|
| F(DefineClass, 6, 1) \
|
| F(DefineClassMethod, 3, 1) \
|
| F(ClassGetSourceCode, 1, 1) \
|
| - F(ThrowNonMethodError, 0, 1) \
|
| - F(ThrowUnsupportedSuperError, 0, 1) \
|
| F(LoadFromSuper, 3, 1) \
|
| F(LoadKeyedFromSuper, 3, 1) \
|
| + F(ThrowConstructorNonCallableError, 0, 1) \
|
| + F(ThrowNonMethodError, 0, 1) \
|
| + F(ThrowUnsupportedSuperError, 0, 1) \
|
| F(StoreToSuper_Strict, 4, 1) \
|
| F(StoreToSuper_Sloppy, 4, 1) \
|
| F(StoreKeyedToSuper_Strict, 4, 1) \
|
| - F(StoreKeyedToSuper_Sloppy, 4, 1) \
|
| - F(DefaultConstructorSuperCall, 0, 1)
|
| + F(StoreKeyedToSuper_Sloppy, 4, 1)
|
|
|
|
|
| #define RUNTIME_FUNCTION_LIST_ALWAYS_2(F) \
|
|
|