(&mut self)
| 181 | } |
| 182 | |
| 183 | pub fn parse_continue_statement(&mut self) -> Option<Statement> { |
| 184 | self.next_token(); |
| 185 | while !self.current_token(Token::Semicolon) { |
| 186 | self.next_token(); |
| 187 | } |
| 188 | Some(Statement::Continue) |
| 189 | } |
| 190 | |
| 191 | fn parse_typof_expr(&mut self) -> Option<Expr> { |
| 192 | self.next_token(); |
no test coverage detected