| 30 | import { createPythonParser } from './treeSitter'; |
| 31 | |
| 32 | interface BuilderCacheEntry { |
| 33 | structure: BuilderFunctionStructure | null; |
| 34 | sourceFilePath?: string; |
| 35 | mtimeMs?: number; |
| 36 | } |
| 37 | |
| 38 | interface ParsedPythonFile { |
| 39 | filePath: string; |
nothing calls this directly
no outgoing calls
no test coverage detected