From d8fb00d741ae7ac5af47539819d623a5a4c8de01 Mon Sep 17 00:00:00 2001 From: legendecas Date: Sun, 6 Mar 2022 14:56:51 +0800 Subject: [PATCH] Add missing feature flag array-grouping --- features.txt | 4 ++++ test/built-ins/Array/prototype/Symbol.unscopables/value.js | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/features.txt b/features.txt index 367e8d9d4c..e85ecc3f18 100644 --- a/features.txt +++ b/features.txt @@ -260,6 +260,10 @@ ShadowRealm # https://github.com/tc39/proposal-array-find-from-last array-find-from-last +# Array.prototype.groupBy & Array.prototype.groupByToMap +# https://github.com/tc39/proposal-array-grouping +array-grouping + # Intl.DurationFormat # https://github.com/tc39/proposal-intl-duration-format Intl.DurationFormat diff --git a/test/built-ins/Array/prototype/Symbol.unscopables/value.js b/test/built-ins/Array/prototype/Symbol.unscopables/value.js index 526cf8b877..19e1206163 100644 --- a/test/built-ins/Array/prototype/Symbol.unscopables/value.js +++ b/test/built-ins/Array/prototype/Symbol.unscopables/value.js @@ -25,7 +25,7 @@ info: | 16. Assert: Each of the above calls returns true. 17. Return unscopableList. includes: [propertyHelper.js] -features: [Symbol.unscopables, array-find-from-last] +features: [Symbol.unscopables, array-find-from-last, array-grouping] ---*/ var unscopables = Array.prototype[Symbol.unscopables];