Commit 32f3277e authored by arv@chromium.org's avatar arv@chromium.org

Enable ES6 numeric literals by default

BUG=v8:2783
LOG=Y
R=dslomov@chromium.org

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

Cr-Commit-Position: refs/heads/master@{#25204}
git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@25204 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 9eba79df
......@@ -175,12 +175,11 @@ DEFINE_IMPLICATION(harmony, es_staging)
V(harmony_proxies, "harmony proxies")
// Features that are complete (but still behind --harmony/es-staging flag).
#define HARMONY_STAGED(V) \
V(harmony_strings, "harmony string methods") \
V(harmony_numeric_literals, "harmony numeric literals")
#define HARMONY_STAGED(V) V(harmony_strings, "harmony string methods")
// Features that are shipping (turned on by default, but internal flag remains).
#define HARMONY_SHIPPING(V)
#define HARMONY_SHIPPING(V) \
V(harmony_numeric_literals, "harmony numeric literals")
// 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,
......
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