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

Unified Diff: src/preparser.cc

Issue 938443002: [es6] implement spread calls (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Add more variations to evaluation order tests Created 5 years, 10 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/preparser.cc
diff --git a/src/preparser.cc b/src/preparser.cc
index e7fff33d3bf7f6d47b96a9debbe5ac7a52c0957f..74437ea962c6811d83b898e226330cd56865cd6f 100644
--- a/src/preparser.cc
+++ b/src/preparser.cc
@@ -1021,7 +1021,11 @@ PreParser::Expression PreParser::ParseV8Intrinsic(bool* ok) {
}
// Allow "eval" or "arguments" for backward compatibility.
ParseIdentifier(kAllowEvalOrArguments, CHECK_OK);
- ParseArguments(ok);
+ Scanner::Location spread_pos;
+ ParseArguments(&spread_pos, ok);
+
+ // TODO(caitp): support intrinsics
+ DCHECK(!spread_pos.IsValid());
return Expression::Default();
}

Powered by Google App Engine
This is Rietveld 408576698