| 7 | import { Token, TokenName } from './token'; |
| 8 | |
| 9 | interface Config { |
| 10 | range: boolean; |
| 11 | loc: boolean; |
| 12 | source: string | null; |
| 13 | tokens: boolean; |
| 14 | comment: boolean; |
| 15 | tolerant: boolean; |
| 16 | } |
| 17 | |
| 18 | interface Context { |
| 19 | isModule: boolean; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…