Reviewers: adamk, rossberg,

Description:
Ship --harmony_array_includes

Intent to ship:
https://groups.google.com/d/msg/v8-users/-a8_8cb6FRI/trjyB5bACQAJ

BUG=v8:3575
R=ad...@chromium.org, rossb...@chromium.org
LOG=Y

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

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

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


Index: src/flag-definitions.h
diff --git a/src/flag-definitions.h b/src/flag-definitions.h
index e563e4c570b3819c68d77127a83a09099dfcff90..39c52c86cc862c6d17b14f22d22988bbafefea29 100644
--- a/src/flag-definitions.h
+++ b/src/flag-definitions.h
@@ -200,19 +200,19 @@ DEFINE_BOOL(legacy_const, true, "legacy semantics for const in sloppy mode")

 // Features that are complete (but still behind --harmony/es-staging flag).
 #define HARMONY_STAGED(V)                                       \
-  V(harmony_array_includes, "harmony Array.prototype.includes") \
   V(harmony_tostring, "harmony toString")                       \
   V(harmony_concat_spreadable, "harmony isConcatSpreadable")    \
   V(harmony_rest_parameters, "harmony rest parameters")         \
   V(harmony_sloppy, "harmony features in sloppy mode")

// Features that are shipping (turned on by default, but internal flag remains).
-#define HARMONY_SHIPPING(V)                                    \
-  V(harmony_arrow_functions, "harmony arrow functions")        \
-  V(harmony_new_target, "harmony new.target")                  \
-  V(harmony_object_observe, "harmony Object.observe")          \
-  V(harmony_spreadcalls, "harmony spread-calls")               \
-  V(harmony_spread_arrays, "harmony spread in array literals") \
+#define HARMONY_SHIPPING(V)                                     \
+  V(harmony_array_includes, "harmony Array.prototype.includes") \
+  V(harmony_arrow_functions, "harmony arrow functions")         \
+  V(harmony_new_target, "harmony new.target")                   \
+  V(harmony_object_observe, "harmony Object.observe")           \
+  V(harmony_spreadcalls, "harmony spread-calls")                \
+  V(harmony_spread_arrays, "harmony spread in array literals")  \
   V(harmony_object, "harmony Object methods")

// Once a shipping feature has proved stable in the wild, it will be dropped


--
--
v8-dev mailing list
v8-dev@googlegroups.com
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 v8-dev+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to