Parse an expression
(&mut self)
| 315 | |
| 316 | /// Parse an expression |
| 317 | pub fn parse_expr(&mut self) -> crate::Result<Expr> { |
| 318 | self.parse_arrow_expr() |
| 319 | } |
| 320 | |
| 321 | /// Parse arrow type: A -> B |
| 322 | fn parse_arrow_expr(&mut self) -> crate::Result<Expr> { |
no test coverage detected