| Index: src/flag-definitions.h
|
| diff --git a/src/flag-definitions.h b/src/flag-definitions.h
|
| index a5bde3af23361bd75d896444d5a4f540bde9621e..44bb88f2fecca4ebcabf17af211c9ffe76266e87 100644
|
| --- a/src/flag-definitions.h
|
| +++ b/src/flag-definitions.h
|
| @@ -194,7 +194,7 @@ 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) \
|
| +#define HARMONY_INPROGRESS_BASE(V) \
|
| V(harmony_array_prototype_values, "harmony Array.prototype.values") \
|
| V(harmony_function_sent, "harmony function.sent") \
|
| V(harmony_tailcalls, "harmony tail calls") \
|
| @@ -208,6 +208,14 @@ DEFINE_IMPLICATION(es_staging, move_object_start)
|
| V(harmony_dynamic_import, "harmony dynamic import") \
|
| V(harmony_promise_finally, "harmony Promise.prototype.finally")
|
|
|
| +#ifdef V8_I18N_SUPPORT
|
| +#define HARMONY_INPROGRESS(V) \
|
| + HARMONY_INPROGRESS_BASE(V) \
|
| + V(harmony_plural_rules, "Intl.PluralRules")
|
| +#else
|
| +#define HARMONY_INPROGRESS(V) HARMONY_INPROGRESS_BASE(V)
|
| +#endif
|
| +
|
| // Features that are complete (but still behind --harmony/es-staging flag).
|
| #define HARMONY_STAGED(V) \
|
| V(harmony_regexp_lookbehind, "harmony regexp lookbehind") \
|
|
|