| 51 | const PARSERS_DIR = `${process.cwd()}/public/tree-sitter/parsers`; |
| 52 | |
| 53 | interface ParserSource { |
| 54 | package: string; |
| 55 | subdir?: string; |
| 56 | } |
| 57 | |
| 58 | // All bundled parsers — built from source using tree-sitter-cli. |
| 59 | const BUNDLED_PARSERS: Record<string, ParserSource> = { |
nothing calls this directly
no outgoing calls
no test coverage detected