/** * @nahisaho/musubix-codegraph - Go Extractor * * AST extractor for Go source files * * @see REQ-CG-MULTILANG-002 * @see DES-CG-GO * @see TSK-CG-011 */ import type { ParseResult } from '../../types.js'; import { BaseExtractor, type LanguageConfig, type SyntaxTree } from './base-extractor.js'; /** * Go language extractor */ export declare class GoExtractor extends BaseExtractor { readonly config: LanguageConfig; extract(tree: SyntaxTree, filePath: string, sourceCode: string): ParseResult; private extractFunction; private extractMethod; private extractTypeDeclaration; private extractTypeSpec; private extractImport; private extractGoDocComment; } //# sourceMappingURL=go.d.ts.map