|
- # -*- coding: utf-8 -*-
-
- from typing import Dict, Iterable, Callable, Union
- from .tree import Tree
- from .lexer import Token
-
-
- class LarkError(Exception):
- pass
-
-
- class GrammarError(LarkError):
- pass
-
-
- class ParseError(LarkError):
- pass
-
-
- class LexError(LarkError):
- pass
-
-
- class UnexpectedInput(LarkError):
- pos_in_stream: int
-
- def get_context(self, text: str, span: int = ...):
- ...
-
- def match_examples(
- self,
- parse_fn: Callable[[str], Tree],
- examples: Dict[str, Iterable[str]]
- ):
- ...
-
-
- class UnexpectedToken(ParseError, UnexpectedInput):
- pass
-
-
- class UnexpectedCharacters(LexError, UnexpectedInput):
- line: int
- column: int
-
-
- class VisitError(LarkError):
- obj: Union[Tree, Token]
- orig_exc: Exception
|