| Index: src/runtime/runtime.h
|
| diff --git a/src/runtime/runtime.h b/src/runtime/runtime.h
|
| index 5af0f80bdcb781f515df7d03448e9f26683a461c..a5908815bd6133197b5f4b1875646cea28455400 100644
|
| --- a/src/runtime/runtime.h
|
| +++ b/src/runtime/runtime.h
|
| @@ -84,7 +84,6 @@ namespace internal {
|
| F(HomeObjectSymbol, 0, 1) \
|
| F(DefineClass, 4, 1) \
|
| F(FinalizeClassDefinition, 2, 1) \
|
| - F(DefineClassMethod, 3, 1) \
|
| F(LoadFromSuper, 4, 1) \
|
| F(LoadKeyedFromSuper, 4, 1) \
|
| F(StoreToSuper_Strict, 4, 1) \
|
| @@ -414,7 +413,6 @@ namespace internal {
|
| F(GetHoleNaNUpper, 0, 1) \
|
| F(GetHoleNaNLower, 0, 1)
|
|
|
| -
|
| #define FOR_EACH_INTRINSIC_OBJECT(F) \
|
| F(GetPrototype, 1, 1) \
|
| F(InternalSetPrototype, 2, 1) \
|
| @@ -451,6 +449,7 @@ namespace internal {
|
| F(IsJSGlobalProxy, 1, 1) \
|
| F(DefineAccessorPropertyUnchecked, 5, 1) \
|
| F(DefineDataPropertyUnchecked, 4, 1) \
|
| + F(DefineDataPropertyInLiteral, 5, 1) \
|
| F(GetDataProperty, 2, 1) \
|
| F(HasFastPackedElements, 1, 1) \
|
| F(ValueOf, 1, 1) \
|
| @@ -482,7 +481,6 @@ namespace internal {
|
| F(ObjectDefineProperties, 2, 1) \
|
| F(ObjectDefineProperty, 3, 1)
|
|
|
| -
|
| #define FOR_EACH_INTRINSIC_OBSERVE(F) \
|
| F(IsObserved, 1, 1) \
|
| F(SetIsObserved, 1, 1) \
|
|
|