(self, lookahead: bool = False)
| 149 | return match.group(1) if match else None |
| 150 | |
| 151 | def _line(self, lookahead: bool = False) -> str: |
| 152 | self.line_number += 1 |
| 153 | line = self.input.pop() |
| 154 | if not lookahead: |
| 155 | self.language.parse_line(line) |
| 156 | return line |
| 157 | |
| 158 | def parse_verbatim_block(self) -> Block: |
| 159 | lines = [] |
no test coverage detected