| Index: src/runtime/runtime.h
|
| diff --git a/src/runtime/runtime.h b/src/runtime/runtime.h
|
| index 9b68c3accb96bc0e36e722ad5f1d8258e444a768..adc64e5c9ceba8f71b429aeaf1f5d51ddcfabf3d 100644
|
| --- a/src/runtime/runtime.h
|
| +++ b/src/runtime/runtime.h
|
| @@ -36,27 +36,28 @@ namespace internal {
|
| // A variable number of arguments is specified by a -1, additional restrictions
|
| // are specified by inline comments
|
|
|
| -#define FOR_EACH_INTRINSIC_ARRAY(F) \
|
| - F(FinishArrayPrototypeSetup, 1, 1) \
|
| - F(SpecialArrayFunctions, 0, 1) \
|
| - F(TransitionElementsKind, 2, 1) \
|
| - F(RemoveArrayHoles, 2, 1) \
|
| - F(MoveArrayContents, 2, 1) \
|
| - F(EstimateNumberOfElements, 1, 1) \
|
| - F(GetArrayKeys, 2, 1) \
|
| - F(NewArray, -1 /* >= 3 */, 1) \
|
| - F(FunctionBind, -1, 1) \
|
| - F(NormalizeElements, 1, 1) \
|
| - F(GrowArrayElements, 2, 1) \
|
| - F(HasComplexElements, 1, 1) \
|
| - F(IsArray, 1, 1) \
|
| - F(ArrayIsArray, 1, 1) \
|
| - F(FixedArrayGet, 2, 1) \
|
| - F(FixedArraySet, 3, 1) \
|
| - F(ArraySpeciesConstructor, 1, 1) \
|
| - F(ArrayIncludes_Slow, 3, 1) \
|
| - F(ArrayIndexOf, 3, 1) \
|
| - F(SpreadIterablePrepare, 1, 1) \
|
| +#define FOR_EACH_INTRINSIC_ARRAY(F) \
|
| + F(FinishArrayPrototypeSetup, 1, 1) \
|
| + F(SpecialArrayFunctions, 0, 1) \
|
| + F(SpecialExperimentalArrayFunctions, 0, 1) \
|
| + F(TransitionElementsKind, 2, 1) \
|
| + F(RemoveArrayHoles, 2, 1) \
|
| + F(MoveArrayContents, 2, 1) \
|
| + F(EstimateNumberOfElements, 1, 1) \
|
| + F(GetArrayKeys, 2, 1) \
|
| + F(NewArray, -1 /* >= 3 */, 1) \
|
| + F(FunctionBind, -1, 1) \
|
| + F(NormalizeElements, 1, 1) \
|
| + F(GrowArrayElements, 2, 1) \
|
| + F(HasComplexElements, 1, 1) \
|
| + F(IsArray, 1, 1) \
|
| + F(ArrayIsArray, 1, 1) \
|
| + F(FixedArrayGet, 2, 1) \
|
| + F(FixedArraySet, 3, 1) \
|
| + F(ArraySpeciesConstructor, 1, 1) \
|
| + F(ArrayIncludes_Slow, 3, 1) \
|
| + F(ArrayIndexOf, 3, 1) \
|
| + F(SpreadIterablePrepare, 1, 1) \
|
| F(SpreadIterableFixed, 1, 1)
|
|
|
| #define FOR_EACH_INTRINSIC_ATOMICS(F) \
|
|
|