| Index: runtime/vm/ast_printer.cc
|
| ===================================================================
|
| --- runtime/vm/ast_printer.cc (revision 44677)
|
| +++ runtime/vm/ast_printer.cc (working copy)
|
| @@ -412,9 +412,7 @@
|
| void AstPrinter::VisitTryCatchNode(TryCatchNode* node) {
|
| ISL_Print("(%s ", node->PrettyName());
|
| node->try_block()->Visit(this);
|
| - if (node->catch_block() != NULL) {
|
| - node->catch_block()->Visit(this);
|
| - }
|
| + node->catch_block()->Visit(this);
|
| if (node->finally_block() != NULL) {
|
| ISL_Print("(finally ");
|
| node->finally_block()->Visit(this);
|
|
|