(&mut self, _can_assign: bool)
| 1675 | } |
| 1676 | |
| 1677 | fn unary(&mut self, _can_assign: bool) -> Option<Expr<'gc>> { |
| 1678 | let operator = self.previous; |
| 1679 | let right = Box::new(self.parse_precedence(Precedence::Unary)?); |
| 1680 | Some(Expr::Unary { |
| 1681 | operator, |
| 1682 | right, |
| 1683 | line: operator.line, |
| 1684 | }) |
| 1685 | } |
| 1686 | |
| 1687 | fn binary(&mut self, _can_assign: bool) -> Option<Expr<'gc>> { |
| 1688 | let operator = self.previous; |
nothing calls this directly
no test coverage detected