| Index: src/flag-definitions.h
|
| diff --git a/src/flag-definitions.h b/src/flag-definitions.h
|
| index 14f54881e634a76725b9c3b07c7c57573b67dc45..841d326918f2c5d0e0ee81a876bf425b9466dfdf 100644
|
| --- a/src/flag-definitions.h
|
| +++ b/src/flag-definitions.h
|
| @@ -199,6 +199,7 @@ DEFINE_IMPLICATION(es_staging, move_object_start)
|
| // Features that are still work in progress (behind individual flags).
|
| #ifdef V8_I18N_SUPPORT
|
| #define HARMONY_INPROGRESS(V) \
|
| + V(harmony_array_prototype_values, "harmony Array.prototype.values") \
|
| V(harmony_function_sent, "harmony function.sent") \
|
| V(harmony_sharedarraybuffer, "harmony sharedarraybuffer") \
|
| V(harmony_simd, "harmony simd") \
|
| @@ -208,6 +209,7 @@ DEFINE_IMPLICATION(es_staging, move_object_start)
|
| V(harmony_async_await, "harmony async-await")
|
| #else
|
| #define HARMONY_INPROGRESS(V) \
|
| + V(harmony_array_prototype_values, "harmony Array.prototype.values") \
|
| V(harmony_function_sent, "harmony function.sent") \
|
| V(harmony_sharedarraybuffer, "harmony sharedarraybuffer") \
|
| V(harmony_simd, "harmony simd") \
|
| @@ -229,7 +231,6 @@ DEFINE_IMPLICATION(es_staging, move_object_start)
|
|
|
| // Features that are shipping (turned on by default, but internal flag remains).
|
| #define HARMONY_SHIPPING(V) \
|
| - V(harmony_array_prototype_values, "harmony Array.prototype.values") \
|
| V(harmony_function_name, "harmony Function name inference") \
|
| V(harmony_instanceof, "harmony instanceof support") \
|
| V(harmony_iterator_close, "harmony iterator finalization") \
|
|
|