(&mut self)
| 173 | } |
| 174 | |
| 175 | pub fn parse_break_statement(&mut self) -> Option<Statement> { |
| 176 | self.next_token(); |
| 177 | while !self.current_token(Token::Semicolon) { |
| 178 | self.next_token(); |
| 179 | } |
| 180 | Some(Statement::Break) |
| 181 | } |
| 182 | |
| 183 | pub fn parse_continue_statement(&mut self) -> Option<Statement> { |
| 184 | self.next_token(); |
no test coverage detected