UNPKG

vibe-coder-mcp

Version:

Production-ready MCP server with complete agent integration, multi-transport support, and comprehensive development automation tools for AI-assisted workflows.

24 lines 1.41 kB
import { BaseLanguageHandler } from './base.js'; import { SyntaxNode } from '../parser.js'; import { FunctionExtractionOptions } from '../types.js'; import { ImportedItem } from '../codeMapModel.js'; export declare class GoHandler extends BaseLanguageHandler { protected getFunctionQueryPatterns(): string[]; protected getClassQueryPatterns(): string[]; protected getImportQueryPatterns(): string[]; protected extractFunctionName(node: SyntaxNode, sourceCode: string, _options?: FunctionExtractionOptions): string; private hasTestSignature; private hasBenchmarkSignature; private extractReceiverType; private isHttpHandler; protected extractClassName(node: SyntaxNode, sourceCode: string): string; protected extractImportPath(node: SyntaxNode, sourceCode: string): string; protected extractImportedItems(node: SyntaxNode, sourceCode: string): ImportedItem[] | undefined; protected isDefaultImport(node: SyntaxNode, sourceCode: string): boolean | undefined; protected extractImportAlias(node: SyntaxNode, sourceCode: string): string | undefined; protected extractFunctionComment(node: SyntaxNode, _sourceCode: string): string | undefined; protected extractClassComment(node: SyntaxNode, _sourceCode: string): string | undefined; private parseGoDocComment; detectFramework(sourceCode: string): string | null; } //# sourceMappingURL=go.d.ts.map