Index: src/flag-definitions.h |
diff --git a/src/flag-definitions.h b/src/flag-definitions.h |
index f1b9b052e1d53fefd350536cc9bea0848923b4e9..792bc7e2410c496f2d254db2da3b754a5f6cc9e5 100644 |
--- a/src/flag-definitions.h |
+++ b/src/flag-definitions.h |
@@ -181,6 +181,7 @@ DEFINE_BOOL(harmony_shipping, true, "enable all shipped harmony fetaures") |
DEFINE_IMPLICATION(harmony, es_staging) |
DEFINE_IMPLICATION(es_staging, harmony) |
+ |
// Features that are still work in progress (behind individual flags). |
#define HARMONY_INPROGRESS(V) \ |
V(harmony_modules, "harmony modules (implies block scoping)") \ |
@@ -194,6 +195,8 @@ DEFINE_IMPLICATION(es_staging, harmony) |
V(harmony_unicode_regexps, "harmony unicode regexps") \ |
V(harmony_computed_property_names, "harmony computed property names") \ |
V(harmony_rest_parameters, "harmony rest parameters") \ |
+ V(harmony_spread, "harmony spread operator") \ |
+ V(harmony_spreadcalls, "harmony spread-calls") |
rossberg
2015/02/25 14:28:18
Nit: spread_calls
|
// Features that are complete (but still behind --harmony/es-staging flag). |
#define HARMONY_STAGED(V) \ |
@@ -238,7 +241,8 @@ DEFINE_IMPLICATION(harmony_modules, harmony_scoping) |
DEFINE_IMPLICATION(harmony_classes, harmony_scoping) |
DEFINE_IMPLICATION(harmony_classes, harmony_object_literals) |
DEFINE_IMPLICATION(harmony_unicode_regexps, harmony_unicode) |
- |
+DEFINE_IMPLICATION(harmony_spreadcalls, harmony_spread) |
+DEFINE_IMPLICATION(harmony_spread, harmony_spreadcalls) |
// Flags for experimental implementation features. |
DEFINE_BOOL(compiled_keyed_generic_loads, false, |