/** * Cached Go parse entry point — the analog of `lang-typescript`'s * `getSharedSourceFile`. Routes through `core`'s active `LanguageParseCache` * so a file parsed by a fitness check and by the graph adapter in the same run * is parsed once; falls back to a direct parse when no cache is active. */ import type { GoTree } from './parse.js'; /** Returns the shared (cached) Go parse tree for `filePath`, or null when unparseable. */ export declare function getSharedTree(filePath: string, content: string): GoTree | null; //# sourceMappingURL=shared-tree.d.ts.map