Create a parse error at the current position.
(self, message: str)
| 199 | raise ParseError(message, token.line, token.column) |
| 200 | |
| 201 | def error(self, message: str) -> ParseError: |
| 202 | """Create a parse error at the current position.""" |
| 203 | token = self.current() |
| 204 | return ParseError(message, token.line, token.column) |
| 205 | |
| 206 | def parse(self) -> Schema: |
| 207 | """Parse the entire input and return a Schema.""" |
no test coverage detected