File tree 1 file changed +0
-4
lines changed
1 file changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -1629,7 +1629,6 @@ pub impl Parser {
1629
1629
self . bump ( ) ;
1630
1630
let e = self . parse_prefix_expr ( ) ;
1631
1631
hi = e. span . hi ;
1632
- self . get_id ( ) ; // see ast_util::op_expr_callee_id
1633
1632
ex = expr_unary ( not, e) ;
1634
1633
}
1635
1634
token:: BINOP ( b) => {
@@ -1638,7 +1637,6 @@ pub impl Parser {
1638
1637
self . bump ( ) ;
1639
1638
let e = self . parse_prefix_expr ( ) ;
1640
1639
hi = e. span . hi ;
1641
- self . get_id ( ) ; // see ast_util::op_expr_callee_id
1642
1640
ex = expr_unary ( neg, e) ;
1643
1641
}
1644
1642
token:: STAR => {
@@ -1738,7 +1736,6 @@ pub impl Parser {
1738
1736
self . bump ( ) ;
1739
1737
let expr = self . parse_prefix_expr ( ) ;
1740
1738
let rhs = self . parse_more_binops ( expr, cur_prec) ;
1741
- self . get_id ( ) ; // see ast_util::op_expr_callee_id
1742
1739
let bin = self . mk_expr ( lhs. span . lo , rhs. span . hi ,
1743
1740
expr_binary ( cur_op, lhs, rhs) ) ;
1744
1741
self . parse_more_binops ( bin, min_prec)
@@ -1789,7 +1786,6 @@ pub impl Parser {
1789
1786
token:: SHL => aop = shl,
1790
1787
token:: SHR => aop = shr
1791
1788
}
1792
- self . get_id ( ) ; // see ast_util::op_expr_callee_id
1793
1789
self . mk_expr ( lo, rhs. span . hi ,
1794
1790
expr_assign_op ( aop, lhs, rhs) )
1795
1791
}
You can’t perform that action at this time.
0 commit comments