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

Unified Diff: src/compiler/ast-graph-builder.cc

Issue 1309813007: [es6] implement destructuring assignment (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Remove facilities for rewriting the expression multiple ways Created 5 years 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/compiler/ast-graph-builder.cc
diff --git a/src/compiler/ast-graph-builder.cc b/src/compiler/ast-graph-builder.cc
index 9be3349bf085a1f0a76485b2ba956c5486451a5f..22485b694a8a4507eac54bbe6565622f36236427 100644
--- a/src/compiler/ast-graph-builder.cc
+++ b/src/compiler/ast-graph-builder.cc
@@ -3064,6 +3064,11 @@ VectorSlotPair AstGraphBuilder::CreateVectorSlotPair(
}
+void AstGraphBuilder::VisitRewritableExpression(RewritableExpression* node) {
+ Visit(node->expression());
+}
+
+
namespace {
// Limit of context chain length to which inline check is possible.

Powered by Google App Engine
This is Rietveld 408576698