Index: src/ast/prettyprinter.cc |
diff --git a/src/ast/prettyprinter.cc b/src/ast/prettyprinter.cc |
index f19ee23de13f646240a99594fc0a2546c7ab1b34..b5d0ef2f648e1691b93ed3dda5216107dedce174 100644 |
--- a/src/ast/prettyprinter.cc |
+++ b/src/ast/prettyprinter.cc |
@@ -870,6 +870,9 @@ void AstPrinter::PrintTryStatement(TryStatement* node) { |
case HandlerTable::DESUGARING: |
prediction = "DESUGARING"; |
break; |
+ case HandlerTable::ASYNC_AWAIT: |
+ prediction = "ASYNC_AWAIT"; |
+ break; |
} |
Print(" %s\n", prediction); |
} |