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

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

Issue 2654423004: [async-functions] support await expressions in finally statements (Closed)
Patch Set: make -Wunused-variable bots happy maybe 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/compiler/ast-graph-builder.cc
diff --git a/src/compiler/ast-graph-builder.cc b/src/compiler/ast-graph-builder.cc
index b1495d362874ae2a0330a17f5cdb46966620cbd0..368fe429b4ae5dd31bf1eb6d25e303d9846e2233 100644
--- a/src/compiler/ast-graph-builder.cc
+++ b/src/compiler/ast-graph-builder.cc
@@ -2181,6 +2181,11 @@ void AstGraphBuilder::VisitGetIterator(GetIterator* expr) {
UNREACHABLE();
}
+void AstGraphBuilder::VisitInternalVariable(InternalVariable* expr) {
+ // InternalVariable is supported only by going through Ignition first.
+ UNREACHABLE();
+}
+
void AstGraphBuilder::VisitThisFunction(ThisFunction* expr) {
Node* value = GetFunctionClosure();
ast_context()->ProduceValue(expr, value);

Powered by Google App Engine
This is Rietveld 408576698