Commit 5337508f authored by caitpotter88's avatar caitpotter88 Committed by Commit bot

[es6] ship Rest Parameters

BUG=v8:2159
LOG=N
R=arv@chromium.org, dslomov@chromium.org, rossberg@chromium.org

Review URL: https://codereview.chromium.org/1191653008

Cr-Commit-Position: refs/heads/master@{#29191}
parent 839170e7
......@@ -199,7 +199,6 @@ DEFINE_IMPLICATION(es_staging, harmony)
// Features that are complete (but still behind --harmony/es-staging flag).
#define HARMONY_STAGED(V) \
V(harmony_arrays, "harmony array methods") \
V(harmony_rest_parameters, "harmony rest parameters") \
V(harmony_tostring, "harmony toString")
// Features that are shipping (turned on by default, but internal flag remains).
......@@ -211,7 +210,8 @@ DEFINE_IMPLICATION(es_staging, harmony)
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_object, "harmony Object methods") \
V(harmony_rest_parameters, "harmony rest parameters")
// 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,
......
......@@ -28,7 +28,7 @@
// Test the case when exception is thrown from the parser when lazy
// compiling a function.
// Flags: --stack_size=44
// Flags: --stack_size=46
// NOTE: stack size constant above has been empirically chosen.
// If the test starts to fail in Genesis, consider increasing this constant.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment