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

Unified Diff: src/full-codegen.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/full-codegen.cc
diff --git a/src/full-codegen.cc b/src/full-codegen.cc
index 327230e75d457eca7be084e9407941476bf1ad97..d70ab80d2cc7999ef5cb99d73078404dcfca28a7 100644
--- a/src/full-codegen.cc
+++ b/src/full-codegen.cc
@@ -288,6 +288,9 @@ void BreakableStatementChecker::VisitCompareOperation(CompareOperation* expr) {
}
+void BreakableStatementChecker::VisitSpread(Spread* expr) { UNREACHABLE(); }
+
+
void BreakableStatementChecker::VisitThisFunction(ThisFunction* expr) {
}
@@ -1666,6 +1669,9 @@ void FullCodeGenerator::ExitTryBlock(int index) {
}
+void FullCodeGenerator::VisitSpread(Spread* expr) { UNREACHABLE(); }
+
+
FullCodeGenerator::NestedStatement* FullCodeGenerator::TryFinally::Exit(
int* stack_depth, int* context_length) {
// The macros used here must preserve the result register.
« no previous file with comments | « src/full-codegen.h ('k') | src/harmony-spread.js » ('j') | test/js-perf-test/JSTests.json » ('J')

Powered by Google App Engine
This is Rietveld 408576698