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

Unified Diff: src/crankshaft/typing.cc

Issue 2654423004: [async-functions] support await expressions in finally statements (Closed)
Patch Set: I'd like to build with -Wunused-variables locally, but how!? 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
« no previous file with comments | « src/crankshaft/hydrogen.cc ('k') | src/full-codegen/full-codegen.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/crankshaft/typing.cc
diff --git a/src/crankshaft/typing.cc b/src/crankshaft/typing.cc
index bbf629d45e93d8ba80ac97781d15de7eaa3041ff..91c1b8e3817ae633f6665ac5a1b4b2a10b2ef334 100644
--- a/src/crankshaft/typing.cc
+++ b/src/crankshaft/typing.cc
@@ -469,7 +469,6 @@ void AstTyper::VisitAssignment(Assignment* expr) {
void AstTyper::VisitYield(Yield* expr) {
- RECURSE(Visit(expr->generator_object()));
RECURSE(Visit(expr->expression()));
// We don't know anything about the result type.
@@ -758,6 +757,8 @@ void AstTyper::VisitEmptyParentheses(EmptyParentheses* expr) {
void AstTyper::VisitGetIterator(GetIterator* expr) { UNREACHABLE(); }
+void AstTyper::VisitInternalVariable(InternalVariable* expr) { UNREACHABLE(); }
+
void AstTyper::VisitThisFunction(ThisFunction* expr) {}
« no previous file with comments | « src/crankshaft/hydrogen.cc ('k') | src/full-codegen/full-codegen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698