(&mut self)
| 1279 | } |
| 1280 | |
| 1281 | fn expression(&mut self) -> Option<Expr<'gc>> { |
| 1282 | self.parse_precedence(Precedence::Assignment) |
| 1283 | } |
| 1284 | |
| 1285 | fn inline_if(&mut self, _can_assign: bool) -> Option<Expr<'gc>> { |
| 1286 | let then_expr = Box::new(self.previous_expr.take()?); |
no test coverage detected