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: Add explicit placeholder RewritableExpression for rewriting 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 403e22bc196a3d8e1b736c4b1662a54545446b35..c737e21e83821c22583965bb5017c1762dff3a88 100644
--- a/src/compiler/ast-graph-builder.cc
+++ b/src/compiler/ast-graph-builder.cc
@@ -3057,6 +3057,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