diff options
| author | John Clements <clements@racket-lang.org> | 2013-03-28 16:56:56 -0700 |
|---|---|---|
| committer | John Clements <clements@racket-lang.org> | 2013-04-10 09:15:08 -0700 |
| commit | 09bcd3837c6ae92ef91cb6a63f1b927a465ea89c (patch) | |
| tree | 8a13fb6f14bd3363d1f99f1bf0358d460022524b /src/libsyntax | |
| parent | 27700472b98862978cd0bd291bbb413e30102f38 (diff) | |
| download | rust-09bcd3837c6ae92ef91cb6a63f1b927a465ea89c.tar.gz rust-09bcd3837c6ae92ef91cb6a63f1b927a465ea89c.zip | |
unneccessary since tjc's commit 78ec6fe30cf2b, fixing #2804
Diffstat (limited to 'src/libsyntax')
| -rw-r--r-- | src/libsyntax/parse/parser.rs | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/libsyntax/parse/parser.rs b/src/libsyntax/parse/parser.rs index ca6fab62e29..b57203765b2 100644 --- a/src/libsyntax/parse/parser.rs +++ b/src/libsyntax/parse/parser.rs @@ -1629,7 +1629,6 @@ pub impl Parser { self.bump(); let e = self.parse_prefix_expr(); hi = e.span.hi; - self.get_id(); // see ast_util::op_expr_callee_id ex = expr_unary(not, e); } token::BINOP(b) => { @@ -1638,7 +1637,6 @@ pub impl Parser { self.bump(); let e = self.parse_prefix_expr(); hi = e.span.hi; - self.get_id(); // see ast_util::op_expr_callee_id ex = expr_unary(neg, e); } token::STAR => { @@ -1738,7 +1736,6 @@ pub impl Parser { self.bump(); let expr = self.parse_prefix_expr(); let rhs = self.parse_more_binops(expr, cur_prec); - self.get_id(); // see ast_util::op_expr_callee_id let bin = self.mk_expr(lhs.span.lo, rhs.span.hi, expr_binary(cur_op, lhs, rhs)); self.parse_more_binops(bin, min_prec) @@ -1789,7 +1786,6 @@ pub impl Parser { token::SHL => aop = shl, token::SHR => aop = shr } - self.get_id(); // see ast_util::op_expr_callee_id self.mk_expr(lo, rhs.span.hi, expr_assign_op(aop, lhs, rhs)) } |
