Reviewers: rossberg,

Message:
here it is :( I think it needs unstaging otherwise you could still see problems
when experimental JS features are enabled in chromium.

Description:
[es6] unship+unstage harmony_rest_parameters

Unstaging to prevent issues with arrow functions when --harmony is
enabled.

BUG=508074
LOG=N
[email protected]

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

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

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


Index: src/flag-definitions.h
diff --git a/src/flag-definitions.h b/src/flag-definitions.h
index be27fa95547400fbb9f1f058eb25d88b0251bd5d..a49833820c87e1e3d06f54eebedf6b1639da19be 100644
--- a/src/flag-definitions.h
+++ b/src/flag-definitions.h
@@ -196,7 +196,8 @@ DEFINE_BOOL(legacy_const, true, "legacy semantics for const in sloppy mode")
   V(harmony_destructuring, "harmony destructuring")             \
   V(harmony_sharedarraybuffer, "harmony sharedarraybuffer")     \
   V(harmony_atomics, "harmony atomics")                         \
-  V(harmony_new_target, "harmony new.target")
+  V(harmony_new_target, "harmony new.target")                   \
+  V(harmony_rest_parameters, "harmony rest parameters")

 // Features that are complete (but still behind --harmony/es-staging flag).
 #define HARMONY_STAGED(V)                                      \
@@ -209,8 +210,7 @@ DEFINE_BOOL(legacy_const, true, "legacy semantics for const in sloppy mode")
   V(harmony_spreadcalls, "harmony spread-calls")                        \
   V(harmony_spread_arrays, "harmony spread in array literals")          \
   V(harmony_unicode, "harmony unicode escapes")                         \
-  V(harmony_object, "harmony Object methods")                           \
-  V(harmony_rest_parameters, "harmony rest parameters")
+  V(harmony_object, "harmony Object methods")

// 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