| Index: src/ast/prettyprinter.cc | 
| diff --git a/src/ast/prettyprinter.cc b/src/ast/prettyprinter.cc | 
| index 944cfaa92902e04153825e7ea45b758db2a14098..d3232dc89a98e38a65cf901e6aacbca519f4918a 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); | 
| } | 
|  |