https://docs.python.org/3/reference/simple_stmts.html#the-continue-statement
(&mut self)
| 1345 | |
| 1346 | // https://docs.python.org/3/reference/simple_stmts.html#the-continue-statement |
| 1347 | fn parse_continue_statement(&mut self) -> Result<Statement, ParsingError> { |
| 1348 | let node = self.start_node(); |
| 1349 | self.bump(Kind::Continue); |
| 1350 | Ok(Statement::ContinueStmt(Box::new(Continue { |
| 1351 | node: self.finish_node(node), |
| 1352 | }))) |
| 1353 | } |
| 1354 | |
| 1355 | // https://docs.python.org/3/reference/simple_stmts.html#the-global-statement |
| 1356 | fn parse_global_statement(&mut self) -> Result<Statement, ParsingError> { |
no test coverage detected