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

Unified Diff: src/ast-numbering.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-numbering.cc
diff --git a/src/ast-numbering.cc b/src/ast-numbering.cc
index b36e1ff7e1d0d2c4249bd9a6b96a2fc20d03b9ed..e0020c189e22683d87c3e4f157a70b4e7b1f7ad1 100644
--- a/src/ast-numbering.cc
+++ b/src/ast-numbering.cc
@@ -113,6 +113,12 @@ void AstNumberingVisitor::VisitEmptyStatement(EmptyStatement* node) {
}
+void AstNumberingVisitor::VisitDelegateStatement(DelegateStatement* node) {
+ IncrementNodeCount();
+ Visit(node->statement());
+}
+
+
void AstNumberingVisitor::VisitContinueStatement(ContinueStatement* node) {
IncrementNodeCount();
}

Powered by Google App Engine
This is Rietveld 408576698