| 5 | type ReaderEntry = string | null; |
| 6 | |
| 7 | interface BufferEntry { |
| 8 | type: string; |
| 9 | value: string; |
| 10 | regex?: { |
| 11 | pattern: string; |
| 12 | flags: string; |
| 13 | }; |
| 14 | range?: [number, number]; |
| 15 | loc?: SourceLocation; |
| 16 | } |
| 17 | |
| 18 | class Reader { |
| 19 | readonly values: ReaderEntry[]; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…