| Index: src/flag-definitions.h
|
| diff --git a/src/flag-definitions.h b/src/flag-definitions.h
|
| index 6af9fc6237a4ea04e578c247f2d62f10290f8ec4..aa11e528ea6ab238fd5c7c98ac9518aab86ab9f5 100644
|
| --- a/src/flag-definitions.h
|
| +++ b/src/flag-definitions.h
|
| @@ -192,11 +192,6 @@ DEFINE_BOOL(harmony, false, "enable all completed harmony features")
|
| DEFINE_BOOL(harmony_shipping, true, "enable all shipped harmony features")
|
| DEFINE_IMPLICATION(es_staging, harmony)
|
|
|
| -
|
| -// Activate on ClusterFuzz.
|
| -DEFINE_IMPLICATION(es_staging, harmony_regexp_lookbehind)
|
| -DEFINE_IMPLICATION(es_staging, move_object_start)
|
| -
|
| // Features that are still work in progress (behind individual flags).
|
| #define HARMONY_INPROGRESS(V) \
|
| V(harmony_array_prototype_values, "harmony Array.prototype.values") \
|
| @@ -205,7 +200,6 @@ DEFINE_IMPLICATION(es_staging, move_object_start)
|
| V(harmony_sharedarraybuffer, "harmony sharedarraybuffer") \
|
| V(harmony_do_expressions, "harmony do-expressions") \
|
| V(harmony_regexp_dotall, "harmony regexp dotall flag") \
|
| - V(harmony_regexp_named_captures, "harmony regexp named captures") \
|
| V(harmony_regexp_property, "harmony unicode regexp property classes") \
|
| V(harmony_class_fields, "harmony public fields in class literals") \
|
| V(harmony_async_iteration, "harmony async iteration") \
|
| @@ -216,6 +210,7 @@ DEFINE_IMPLICATION(es_staging, move_object_start)
|
| #define HARMONY_STAGED(V) \
|
| V(harmony_function_tostring, "harmony Function.prototype.toString") \
|
| V(harmony_regexp_lookbehind, "harmony regexp lookbehind") \
|
| + V(harmony_regexp_named_captures, "harmony regexp named captures") \
|
| V(harmony_restrictive_generators, \
|
| "harmony restrictions on generator declarations") \
|
| V(harmony_object_rest_spread, "harmony object rest spread properties") \
|
|
|