Chromium Code Reviews| Index: src/ast/prettyprinter.cc |
| diff --git a/src/ast/prettyprinter.cc b/src/ast/prettyprinter.cc |
| index 40a60fc601f871bf82503b0b44f356e83ae0db3f..1a8d73e47ace89ccae20fc604f7c6af9ef6b53fb 100644 |
| --- a/src/ast/prettyprinter.cc |
| +++ b/src/ast/prettyprinter.cc |
| @@ -897,6 +897,9 @@ void AstPrinter::PrintTryStatement(TryStatement* node) { |
| case HandlerTable::PROMISE: |
| prediction = "PROMISE"; |
| break; |
| + case HandlerTable::DESUGARING: |
| + prediction = "DESUGARING"; |
| + break; |
| } |
| Print(" %s\n", prediction); |
| } |