Index: src/typing-asm.cc |
diff --git a/src/typing-asm.cc b/src/typing-asm.cc |
index a8d0fbc738a8ea4d1abb4dea41f3ba1e0a8f1817..f7688964a573714f28a8cf6be741128d21b1e287 100644 |
--- a/src/typing-asm.cc |
+++ b/src/typing-asm.cc |
@@ -266,6 +266,12 @@ void AsmTyper::VisitExpressionStatement(ExpressionStatement* stmt) { |
void AsmTyper::VisitEmptyStatement(EmptyStatement* stmt) {} |
+void AsmTyper::VisitSloppyBlockFunctionStatement( |
+ SloppyBlockFunctionStatement* stmt) { |
+ Visit(stmt->statement()); |
+} |
+ |
+ |
void AsmTyper::VisitEmptyParentheses(EmptyParentheses* expr) { UNREACHABLE(); } |