diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2013-05-06 00:43:19 -0400 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2013-05-10 22:51:06 -0400 |
| commit | 63c7e2f991eaf79ece0586b19f0461ec6f8933ee (patch) | |
| tree | e30a478ad4b6ff00bd513f7750349df2faad22b2 /src/libsyntax/print/pprust.rs | |
| parent | 998fececd6516fa07d0cd0a0c4607ddef0bc40f0 (diff) | |
| download | rust-63c7e2f991eaf79ece0586b19f0461ec6f8933ee.tar.gz rust-63c7e2f991eaf79ece0586b19f0461ec6f8933ee.zip | |
Remove the '<->' operator from the language
Diffstat (limited to 'src/libsyntax/print/pprust.rs')
| -rw-r--r-- | src/libsyntax/print/pprust.rs | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/libsyntax/print/pprust.rs b/src/libsyntax/print/pprust.rs index 81652f9c1a1..9d2927eb74f 100644 --- a/src/libsyntax/print/pprust.rs +++ b/src/libsyntax/print/pprust.rs @@ -1328,12 +1328,6 @@ pub fn print_expr(s: @ps, expr: @ast::expr) { word_space(s, ~"="); print_expr(s, rhs); } - ast::expr_swap(lhs, rhs) => { - print_expr(s, lhs); - space(s.s); - word_space(s, ~"<->"); - print_expr(s, rhs); - } ast::expr_assign_op(op, lhs, rhs) => { print_expr(s, lhs); space(s.s); |
