| 2 | import { Syntax } from './syntax'; |
| 3 | |
| 4 | interface Comment { |
| 5 | type: string; |
| 6 | value: string; |
| 7 | range?: [number, number]; |
| 8 | loc?: SourceLocation; |
| 9 | } |
| 10 | |
| 11 | interface Entry { |
| 12 | comment: Comment; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…