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

Unified Diff: src/flag-definitions.h

Issue 2094463002: Allow trailing commas in function parameter lists (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: add mjsunit test for arguments.length with trailing commas Created 4 years, 6 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
Index: src/flag-definitions.h
diff --git a/src/flag-definitions.h b/src/flag-definitions.h
index d5c3e8ad3155ae17d6133d50fc3cc4f5b2595c7b..d75c32cc5ecd097a4965eccb859c14387506f491 100644
--- a/src/flag-definitions.h
+++ b/src/flag-definitions.h
@@ -210,7 +210,9 @@ DEFINE_IMPLICATION(es_staging, harmony_async_await)
V(harmony_regexp_named_captures, "harmony regexp named captures") \
V(harmony_regexp_property, "harmony unicode regexp property classes") \
V(harmony_for_in, "harmony for-in syntax") \
- V(harmony_async_await, "harmony async-await")
+ V(harmony_async_await, "harmony async-await") \
+ V(harmony_trailing_commas_in_parameters, \
adamk 2016/06/28 21:10:51 How about "harmony_trailing_commas" as the flag na
+ "harmony trailing commas in function parameter lists")
// Features that are complete (but still behind --harmony/es-staging flag).
#define HARMONY_STAGED_BASE(V) \

Powered by Google App Engine
This is Rietveld 408576698