(self)
| 374 | # block_sequence ::= BLOCK-SEQUENCE-START (BLOCK-ENTRY block_node?)* BLOCK-END |
| 375 | |
| 376 | def parse_block_sequence_first_entry(self): |
| 377 | token = self.get_token() |
| 378 | self.marks.append(token.start_mark) |
| 379 | return self.parse_block_sequence_entry() |
| 380 | |
| 381 | def parse_block_sequence_entry(self): |
| 382 | if self.check_token(BlockEntryToken): |
nothing calls this directly
no test coverage detected