diff options
Diffstat (limited to 'src/comp/pretty')
| -rw-r--r-- | src/comp/pretty/pprust.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/comp/pretty/pprust.rs b/src/comp/pretty/pprust.rs index 0bdd5c83..c7c4fba3 100644 --- a/src/comp/pretty/pprust.rs +++ b/src/comp/pretty/pprust.rs @@ -690,6 +690,11 @@ fn print_expr(ps s, &@ast::expr expr) { print_expr(s, expr); pclose(s); } + + case (ast::expr_anon_obj(_,_,_,_)) { + wrd(s.s, "obj"); + // TODO + } } end(s.s); } |