(message: string, ...args: any[])
| 20 | |
| 21 | // Debug function to conditionally log messages |
| 22 | export const debugLog = (message: string, ...args: any[]) => { |
| 23 | if (DEBUG) { |
| 24 | console.debug(message, ...args) |
| 25 | } |
| 26 | } |
| 27 | |
| 28 | // Store the initialized TreeSitter for reuse |
| 29 | let initializedTreeSitter: { Parser: typeof Parser; Language: typeof Language } | null = null |
no test coverage detected