Index: src/flag-definitions.h |
diff --git a/src/flag-definitions.h b/src/flag-definitions.h |
index e2d6f64bffe2425156fd6289d0a6af6a98a59b96..32de393a38ec8f09dd9904164eabf39aeb6af463 100644 |
--- a/src/flag-definitions.h |
+++ b/src/flag-definitions.h |
@@ -195,6 +195,7 @@ DEFINE_IMPLICATION(es_staging, harmony) |
// Activate on ClusterFuzz. |
DEFINE_IMPLICATION(es_staging, harmony_regexp_lookbehind) |
+DEFINE_IMPLICATION(es_staging, harmony_regexp_named_captures) |
adamk
2017/03/29 17:26:49
This isn't needed. You can also remove the line ab
jgruber
2017/04/03 08:25:20
Done.
|
DEFINE_IMPLICATION(es_staging, move_object_start) |
// Features that are still work in progress (behind individual flags). |
@@ -204,7 +205,6 @@ DEFINE_IMPLICATION(es_staging, move_object_start) |
V(harmony_tailcalls, "harmony tail calls") \ |
V(harmony_sharedarraybuffer, "harmony sharedarraybuffer") \ |
V(harmony_do_expressions, "harmony do-expressions") \ |
- V(harmony_regexp_named_captures, "harmony regexp named captures") \ |
V(harmony_regexp_property, "harmony unicode regexp property classes") \ |
V(harmony_function_tostring, "harmony Function.prototype.toString") \ |
V(harmony_class_fields, "harmony public fields in class literals") \ |
@@ -215,6 +215,7 @@ DEFINE_IMPLICATION(es_staging, move_object_start) |
// Features that are complete (but still behind --harmony/es-staging flag). |
#define HARMONY_STAGED(V) \ |
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") \ |