massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stubs / Pygments / pygments / scanner.pyi
1 from typing import Any
2
3 class EndOfText(RuntimeError): ...
4
5 class Scanner:
6     data: Any
7     data_length: Any
8     start_pos: int
9     pos: int
10     flags: Any
11     last: Any
12     match: Any
13     def __init__(self, text, flags: int = ...) -> None: ...
14     @property
15     def eos(self): ...
16     def check(self, pattern): ...
17     def test(self, pattern): ...
18     def scan(self, pattern): ...
19     def get_char(self) -> None: ...