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

Unified Diff: src/ast-literal-reindexer.cc

Issue 1332873003: Implement sloppy-mode block-defined functions (Annex B 3.3) (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: More tests Created 5 years, 3 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-literal-reindexer.cc
diff --git a/src/ast-literal-reindexer.cc b/src/ast-literal-reindexer.cc
index d9a6ed1c41d141ce3c92d50c957120bf16ad82e0..440e4f09bf4f1f6261b0634803f8c8c97f3fcde6 100644
--- a/src/ast-literal-reindexer.cc
+++ b/src/ast-literal-reindexer.cc
@@ -24,6 +24,11 @@ void AstLiteralReindexer::VisitExportDeclaration(ExportDeclaration* node) {
void AstLiteralReindexer::VisitEmptyStatement(EmptyStatement* node) {}
+void AstLiteralReindexer::VisitDelegateStatement(DelegateStatement* node) {
+ Visit(node->statement());
+}
+
+
void AstLiteralReindexer::VisitContinueStatement(ContinueStatement* node) {}

Powered by Google App Engine
This is Rietveld 408576698