(&mut self)
| 141 | } |
| 142 | |
| 143 | pub fn parse_expr(&mut self) -> Expr { |
| 144 | self.expr_bp( |
| 145 | 0, |
| 146 | Restrictions { |
| 147 | structs_allowed: true, |
| 148 | }, |
| 149 | ) |
| 150 | } |
| 151 | |
| 152 | pub fn parse_expr_no_struct(&mut self) -> Expr { |
| 153 | self.expr_bp( |
no test coverage detected