Reviewers: rossberg,

Description:
Ship ES6 block scoping.

[email protected]
BUG=v8:2198
LOG=Y

Please review this at https://codereview.chromium.org/792543002/

Base URL: https://chromium.googlesource.com/v8/v8.git@master

Affected files (+2, -2 lines):
  M src/flag-definitions.h


Index: src/flag-definitions.h
diff --git a/src/flag-definitions.h b/src/flag-definitions.h
index 5cdad437e92a9bae41c26b0288f25a596ecd87d1..3e142ddb5f19bdb8a0d6fb7a8295981146be3426 100644
--- a/src/flag-definitions.h
+++ b/src/flag-definitions.h
@@ -187,13 +187,13 @@ DEFINE_IMPLICATION(es_staging, harmony)
     "harmony classes (implies block scoping & object literal extension)") \
   V(harmony_object_literals, "harmony object literal extensions")         \
   V(harmony_tostring, "harmony toString")                                 \
-  V(harmony_scoping, "harmony block scoping")                             \
   V(harmony_templates, "harmony template literals")

// Features that are shipping (turned on by default, but internal flag remains).
 #define HARMONY_SHIPPING(V)                               \
   V(harmony_numeric_literals, "harmony numeric literals") \
-  V(harmony_strings, "harmony string methods")
+  V(harmony_strings, "harmony string methods")            \
+  V(harmony_scoping, "harmony block scoping")

// Once a shipping feature has proved stable in the wild, it will be dropped // from HARMONY_SHIPPING, all occurrences of the FLAG_ variable are removed,


--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to