Reviewers: dslomov_gmail.com,

Message:
PTAL

Description:
Enable ES6 numeric literals by default

BUG=v8:2783
LOG=Y
R=dslomov

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

Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge

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


Index: src/flag-definitions.h
diff --git a/src/flag-definitions.h b/src/flag-definitions.h
index d161d55745b66bda313d211090197d1bc6f1e29b..a1b0c366cc604938f4d78639610f9aecc6c4fa48 100644
--- a/src/flag-definitions.h
+++ b/src/flag-definitions.h
@@ -169,11 +169,10 @@ DEFINE_IMPLICATION(harmony, es_staging)
   V(harmony_arrow_functions, "harmony arrow functions")           \
   V(harmony_tostring, "harmony Symbol.toStringTag")

-#define STAGED_FEATURES(V)              \
-  V(harmony_strings, "harmony strings") \
-  V(harmony_numeric_literals, "harmony numeric literals (0o77, 0b11)")
+#define STAGED_FEATURES(V) V(harmony_strings, "harmony strings")

-#define SHIPPING_FEATURES(V)
+#define SHIPPING_FEATURES(V) \
+  V(harmony_numeric_literals, "harmony numeric literals (0o77, 0b11)")

 #define FLAG_FEATURES(id, description)           \
   DEFINE_BOOL(id, false, "enable " #description) \


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