Parses a `continue` statement. # Panics If the parser isn't positioned at a `continue` token. See:
(&mut self)
| 878 | /// |
| 879 | /// See: <https://docs.python.org/3/reference/simple_stmts.html#grammar-token-python-grammar-continue_stmt> |
| 880 | fn parse_continue_statement(&mut self) -> ast::StmtContinue { |
| 881 | let start = self.node_start(); |
| 882 | self.bump(TokenKind::Continue); |
| 883 | ast::StmtContinue { |
| 884 | range: self.node_range(start), |
| 885 | node_index: AtomicNodeIndex::NONE, |
| 886 | } |
| 887 | } |
| 888 | |
| 889 | /// Parses a `break` statement. |
| 890 | /// |
no test coverage detected