Enable ES6 numeric literals by default
authorarv@chromium.org <arv@chromium.org>
Thu, 6 Nov 2014 18:44:44 +0000 (18:44 +0000)
committerarv@chromium.org <arv@chromium.org>
Thu, 6 Nov 2014 18:45:21 +0000 (18:45 +0000)
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

src/flag-definitions.h

index 690e5c7..ca82ce7 100644 (file)
@@ -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,