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

Unified Diff: src/typing.cc

Issue 938443002: [es6] implement spread calls (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: rebase + clang-format Created 5 years, 8 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..79ec0dde57b57595b19ec2b5eba143db64d68ae4 100644
--- a/src/typing.cc
+++ b/src/typing.cc
@@ -769,6 +769,9 @@ void AstTyper::VisitCompareOperation(CompareOperation* expr) {
}
+void AstTyper::VisitSpread(Spread* expr) { UNREACHABLE(); }
+
+
void AstTyper::VisitThisFunction(ThisFunction* expr) {
}

Powered by Google App Engine
This is Rietveld 408576698