(msg: string)
| 92 | |
| 93 | const debugEnabled = () => process.env.CODEGRAPH_KERNEL_DEBUG === '1'; |
| 94 | function debug(msg: string): void { |
| 95 | if (debugEnabled()) process.stderr.write(`[codegraph-kernel] ${msg}\n`); |
| 96 | } |
| 97 | |
| 98 | /** Languages the loaded binary supports (contract-verified). Empty when no kernel. */ |
| 99 | let kernelLanguages: ReadonlySet<string> = new Set(); |
no test coverage detected