| 30 | |
| 31 | |
| 32 | class Context(NamedTuple): |
| 33 | begin: int |
| 34 | end: int |
| 35 | owner: PLexer |
| 36 | |
| 37 | def __repr__(self) -> str: |
| 38 | return f"<{self.owner.filename}: {self.begin}-{self.end}>" |
| 39 | |
| 40 | |
| 41 | @dataclass |
no outgoing calls
no test coverage detected
searching dependent graphs…