Index: src/runtime/runtime.h |
diff --git a/src/runtime/runtime.h b/src/runtime/runtime.h |
index aff9779589a9e267bfcae044f6ac2f5e3c7c0008..5258f912e2f9624e4d563d2ab37d9890af510523 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) \ |