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

Unified Diff: test/cctest/test-parsing.cc

Issue 2094463002: Allow trailing commas in function parameter lists (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: update grammar comment for FormalParameters to include 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
« no previous file with comments | « src/parsing/parser-base.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/cctest/test-parsing.cc
diff --git a/test/cctest/test-parsing.cc b/test/cctest/test-parsing.cc
index 3c7822a03209f55c7888e27c05e2cdf1622b8f6c..6125e8ad9cbb89141d6aa236ae4613e8f2dcb8d6 100644
--- a/test/cctest/test-parsing.cc
+++ b/test/cctest/test-parsing.cc
@@ -1511,6 +1511,7 @@ enum ParserFlag {
kAllowHarmonyForIn,
kAllowHarmonyAsyncAwait,
kAllowHarmonyRestrictiveGenerators,
+ kAllowHarmonyTrailingCommasInParameters,
};
enum ParserSyncTestResult {
@@ -1535,6 +1536,8 @@ void SetParserFlags(i::ParserBase<Traits>* parser,
flags.Contains(kAllowHarmonyAsyncAwait));
parser->set_allow_harmony_restrictive_generators(
flags.Contains(kAllowHarmonyRestrictiveGenerators));
+ parser->set_allow_harmony_trailing_commas_in_parameters(
+ flags.Contains(kAllowHarmonyTrailingCommasInParameters));
}
@@ -7814,3 +7817,80 @@ TEST(NoDuplicateAsyncFunctionInBlock) {
RunParserSyncTest(top_level_context_data, error_data, kSuccess, NULL, 0,
always_flags, arraysize(always_flags));
}
+
+TEST(TrailingCommasInParameters) {
adamk 2016/06/23 22:08:49 Please add test cases with more than one parameter
jwolfe 2016/06/27 23:28:21 Done.
+ // clang-format off
+ const char* context_data[][2] = {
+ { "", "" },
+ { "'use strict';", "" },
+ { "function foo() {", "}" },
+ { "function foo() {'use strict';", "}" },
+ { NULL, NULL }
+ };
+
+ const char* data[] = {
+ " function a(b,) {}",
+ " function* a(b,) {}",
+ "(function a(b,) {});",
+ "(function* a(b,) {});",
+ "(function (b,) {});",
+ "(function* (b,) {});",
+ "(b,) => {};",
+ "a(1,);",
+ "a(...[],);",
+ NULL
+ };
+ // clang-format on
+
+ static const ParserFlag always_flags[] = {
+ kAllowHarmonyTrailingCommasInParameters};
+ RunParserSyncTest(context_data, data, kSuccess, NULL, 0, always_flags,
+ arraysize(always_flags));
+}
+
+TEST(TrailingCommasInParametersErrors) {
adamk 2016/06/23 22:08:49 Same here as above, please add tests with more tha
jwolfe 2016/06/27 23:28:21 Done.
+ // clang-format off
+ const char* context_data[][2] = {
+ { "", "" },
+ { "'use strict';", "" },
+ { "function foo() {", "}" },
+ { "function foo() {'use strict';", "}" },
+ { NULL, NULL }
+ };
+
+ const char* data[] = {
+ // too many trailing commas
+ " function a(b,,) {}",
+ " function* a(b,,) {}",
+ "(function a(b,,) {});",
+ "(function* a(b,,) {});",
+ "(function (b,,) {});",
+ "(function* (b,,) {});",
+ "(b,,) => {};",
+ "a(1,,);",
+ // only a trailing comma and no parameters
+ " function a1(,) {}",
+ " function* a2(,) {}",
+ "(function a3(,) {});",
+ "(function* a4(,) {});",
+ "(function (,) {});",
+ "(function* (,) {});",
+ "(,) => {};",
+ "a1(,);",
+ // no trailing commas after rest parameter declaration
+ " function a(...b,) {}",
+ " function* a(...b,) {}",
+ "(function a(...b,) {});",
+ "(function* a(...b,) {});",
+ "(function (...b,) {});",
+ "(function* (...b,) {});",
+ "(...b,) => {};",
+ NULL
+ };
+ // clang-format on
+
+ static const ParserFlag always_flags[] = {
+ kAllowHarmonyTrailingCommasInParameters};
+ RunParserSyncTest(context_data, data, kError, NULL, 0, always_flags,
+ arraysize(always_flags));
+}
« no previous file with comments | « src/parsing/parser-base.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698