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

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

Issue 2654423004: [async-functions] support await expressions in finally statements (Closed)
Patch Set: Get everything working (except possibly inspector tests) Created 3 years, 11 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/ast-literal-reindexer.cc
diff --git a/src/ast/ast-literal-reindexer.cc b/src/ast/ast-literal-reindexer.cc
index 67e180fe42bdacb7e5adb96fd663e58ad55d436c..82ba4e87e9d894ba088dae6a375f3698cd2ea38a 100644
--- a/src/ast/ast-literal-reindexer.cc
+++ b/src/ast/ast-literal-reindexer.cc
@@ -90,7 +90,6 @@ void AstLiteralReindexer::VisitReturnStatement(ReturnStatement* node) {
void AstLiteralReindexer::VisitYield(Yield* node) {
- Visit(node->generator_object());
Visit(node->expression());
}
@@ -191,6 +190,8 @@ void AstLiteralReindexer::VisitGetIterator(GetIterator* node) {
Visit(node->iterable());
}
+void AstLiteralReindexer::VisitInternalVariable(InternalVariable* node) {}
+
void AstLiteralReindexer::VisitForInStatement(ForInStatement* node) {
Visit(node->each());
Visit(node->enumerable());

Powered by Google App Engine
This is Rietveld 408576698