Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(201)

Unified Diff: src/flag-definitions.h

Issue 1803903002: Ship Array.prototype.values (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/flag-definitions.h
diff --git a/src/flag-definitions.h b/src/flag-definitions.h
index 6be2d652f939835e5d83f9f0cee93c88c72b22a1..90506418bf7e5d5e0c6c6b1de69ed086200a6fa8 100644
--- a/src/flag-definitions.h
+++ b/src/flag-definitions.h
@@ -210,7 +210,6 @@ DEFINE_IMPLICATION(es_staging, harmony_tailcalls)
// Features that are complete (but still behind --harmony/es-staging flag).
#define HARMONY_STAGED(V) \
- V(harmony_array_prototype_values, "harmony Array.prototype.values") \
V(harmony_regexp_lookbehind, "harmony regexp lookbehind") \
V(harmony_instanceof, "harmony instanceof support") \
V(harmony_object_values_entries, "harmony Object.values / Object.entries") \
@@ -220,17 +219,18 @@ DEFINE_IMPLICATION(es_staging, harmony_tailcalls)
"harmony limitations on sloppy mode function declarations")
// Features that are shipping (turned on by default, but internal flag remains).
-#define HARMONY_SHIPPING(V) \
- V(harmony_function_name, "harmony Function name inference") \
- V(harmony_iterator_close, "harmony iterator finalization") \
- V(harmony_regexps, "harmony regular expression extensions") \
- V(harmony_unicode_regexps, "harmony unicode regexps") \
- V(harmony_sloppy, "harmony features in sloppy mode") \
- V(harmony_sloppy_let, "harmony let in sloppy mode") \
- V(harmony_sloppy_function, "harmony sloppy function block scoping") \
- V(harmony_proxies, "harmony proxies") \
- V(harmony_reflect, "harmony Reflect API") \
- V(harmony_regexp_subclass, "harmony regexp subclassing") \
+#define HARMONY_SHIPPING(V) \
+ V(harmony_array_prototype_values, "harmony Array.prototype.values") \
+ V(harmony_function_name, "harmony Function name inference") \
+ V(harmony_iterator_close, "harmony iterator finalization") \
+ V(harmony_regexps, "harmony regular expression extensions") \
+ V(harmony_unicode_regexps, "harmony unicode regexps") \
+ V(harmony_sloppy, "harmony features in sloppy mode") \
+ V(harmony_sloppy_let, "harmony let in sloppy mode") \
+ V(harmony_sloppy_function, "harmony sloppy function block scoping") \
+ V(harmony_proxies, "harmony proxies") \
+ V(harmony_reflect, "harmony Reflect API") \
+ V(harmony_regexp_subclass, "harmony regexp subclassing") \
V(harmony_species, "harmony Symbol.species")
// Once a shipping feature has proved stable in the wild, it will be dropped
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698