| Index: src/flag-definitions.h
|
| diff --git a/src/flag-definitions.h b/src/flag-definitions.h
|
| index 47076350945f4214c71a3b282883ace43258ec43..8179fa214c4e3f196eb0e03e6b7b0c139814573b 100644
|
| --- a/src/flag-definitions.h
|
| +++ b/src/flag-definitions.h
|
| @@ -158,7 +158,6 @@ DEFINE_IMPLICATION(harmony, es_staging)
|
| V(harmony_scoping, "harmony block scoping") \
|
| V(harmony_modules, "harmony modules (implies block scoping)") \
|
| V(harmony_strings, "harmony strings") \
|
| - V(harmony_arrays, "harmony arrays") \
|
| V(harmony_classes, "harmony classes") \
|
| V(harmony_object_literals, "harmony object literal extensions") \
|
| V(harmony_regexps, "reg-exp related harmony features") \
|
| @@ -167,7 +166,7 @@ DEFINE_IMPLICATION(harmony, es_staging)
|
| #define STAGED_FEATURES(V) \
|
| V(harmony_numeric_literals, "harmony numeric literals (0o77, 0b11)")
|
|
|
| -#define SHIPPING_FEATURES(V)
|
| +#define SHIPPING_FEATURES(V) V(harmony_arrays, "harmony arrays")
|
|
|
| #define FLAG_FEATURES(id, description) \
|
| DEFINE_BOOL(id, false, "enable " #description) \
|
|
|