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

Unified Diff: src/ast-numbering.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/ast-numbering.cc
diff --git a/src/ast-numbering.cc b/src/ast-numbering.cc
index f63919c05802f6e43b93587b7475f8734eb30feb..1d5420990fc8d150f1999d9cc8607653afdc7037 100644
--- a/src/ast-numbering.cc
+++ b/src/ast-numbering.cc
@@ -362,6 +362,9 @@ void AstNumberingVisitor::VisitCompareOperation(CompareOperation* node) {
}
+void AstNumberingVisitor::VisitSpread(Spread* node) { UNREACHABLE(); }
+
+
void AstNumberingVisitor::VisitForInStatement(ForInStatement* node) {
IncrementNodeCount();
DisableSelfOptimization();
« no previous file with comments | « src/ast.h ('k') | src/ast-value-factory.h » ('j') | test/js-perf-test/JSTests.json » ('J')

Powered by Google App Engine
This is Rietveld 408576698