| 14 | |
| 15 | |
| 16 | class Token(NamedTuple): |
| 17 | token: int |
| 18 | text: str |
| 19 | start: int |
| 20 | end: int |
| 21 | line: str |
| 22 | |
| 23 | |
| 24 | def generate_tokens(readline: Callable) -> Generator[TokenInfo, None, None]: |
no outgoing calls
no test coverage detected
searching dependent graphs…