(&mut self)
| 360 | } |
| 361 | |
| 362 | fn parse_ident(&mut self) -> Option<Expr> { |
| 363 | match self.current_token { |
| 364 | Token::Ident(ref mut ident) => Some(Expr::Ident(Ident(ident.clone()))), |
| 365 | _ => None, |
| 366 | } |
| 367 | } |
| 368 | |
| 369 | fn parse_prefix_expr(&mut self) -> Option<Expr> { |
| 370 | let prefix = match self.current_token { |
no test coverage detected