(self)
| 420 | # BLOCK-END |
| 421 | |
| 422 | def parse_block_mapping_first_key(self): |
| 423 | token = self.get_token() |
| 424 | self.marks.append(token.start_mark) |
| 425 | return self.parse_block_mapping_key() |
| 426 | |
| 427 | def parse_block_mapping_key(self): |
| 428 | if self.check_token(KeyToken): |
nothing calls this directly
no test coverage detected