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

Unified Diff: src/typing.cc

Issue 997823003: [es6] support rest parameters in arrow functions (alternative) (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 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
Index: src/typing.cc
diff --git a/src/typing.cc b/src/typing.cc
index 1598c09b59b77f23402f418d3fce0d5263df2727..4b1e6385d15265f2e73992ac9c2656f083c88b39 100644
--- a/src/typing.cc
+++ b/src/typing.cc
@@ -769,6 +769,11 @@ void AstTyper::VisitCompareOperation(CompareOperation* expr) {
}
+void AstTyper::VisitSpread(Spread* expr) {
+ UNREACHABLE();
+}
+
+
void AstTyper::VisitThisFunction(ThisFunction* expr) {
}
« src/preparser.h ('K') | « src/prettyprinter.cc ('k') | test/cctest/test-parsing.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698