Add missing alt arm to expr_if pretty-printer

This commit is contained in:
Brian Anderson 2011-03-07 22:05:55 -05:00
parent 0d60918855
commit 5ba012f4a5

View file

@ -384,6 +384,7 @@ impure fn print_expr(ps s, @ast.expr expr) {
wrd1(s, "else");
print_block(s, blk);
}
case (_) { /* fall through */ }
}
}
case (ast.expr_while(?test,?block,_)) {