| Index: src/flag-definitions.h
|
| diff --git a/src/flag-definitions.h b/src/flag-definitions.h
|
| index 83b0abf757a55b1fb2f8538d7bb9d7993821f66c..ab6692ebf9faf99647199f06926365c150e1be83 100644
|
| --- a/src/flag-definitions.h
|
| +++ b/src/flag-definitions.h
|
| @@ -162,6 +162,8 @@ DEFINE_BOOL(harmony_classes, false, "enable harmony classes")
|
| DEFINE_BOOL(harmony_object_literals, false,
|
| "enable harmony object literal extensions")
|
| DEFINE_BOOL(harmony_regexps, false, "enable regexp-related harmony features")
|
| +DEFINE_BOOL(harmony_tostring, false,
|
| + "enable ES6 version of Object.prototype.toString")
|
| DEFINE_BOOL(harmony, false, "enable all harmony features (except proxies)")
|
|
|
| DEFINE_IMPLICATION(harmony, harmony_scoping)
|
| @@ -177,6 +179,7 @@ DEFINE_IMPLICATION(harmony, harmony_regexps)
|
| DEFINE_IMPLICATION(harmony_modules, harmony_scoping)
|
| DEFINE_IMPLICATION(harmony_classes, harmony_scoping)
|
| DEFINE_IMPLICATION(harmony_classes, harmony_object_literals)
|
| +DEFINE_IMPLICATION(harmony, harmony_tostring)
|
|
|
| DEFINE_IMPLICATION(harmony, es_staging)
|
| DEFINE_IMPLICATION(es_staging, harmony_numeric_literals)
|
|
|