1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
# -*- coding: utf-8 -*-
from typing import List, Dict, Union, Callable, Iterable
from .grammar import Symbol
from .lark import Lark
from .tree import Tree
from .visitors import Transformer_InPlace
from .lexer import TerminalDef
class WriteTokensTransformer(Transformer_InPlace):
def __init__(self, tokens: Dict[str, TerminalDef], term_subs: Dict[str, Callable[[Symbol], str]] = ...): ...
class MatchTree(Tree):
pass
class MakeMatchTree:
name: str
expansion: List[TerminalDef]
def __init__(self, name: str, expansion: List[TerminalDef]):
...
def __call__(self, args: List[Union[str, Tree]]):
...
class Reconstructor:
def __init__(self, parser: Lark, term_subs: Dict[str, Callable[[Symbol], str]] = ...):
...
def reconstruct(self, tree: Tree, postproc: Callable[[Iterable[str]], Iterable[str]]=None,
insert_spaces: bool = True) -> str:
...
|