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.

22 lines 1.3 kB
import { BaseLanguageHandler } from './base.js'; import { SyntaxNode } from '../parser.js'; import { FunctionExtractionOptions } from '../types.js'; import { ImportedItem } from '../codeMapModel.js'; export declare class RustHandler extends BaseLanguageHandler { protected getFunctionQueryPatterns(): string[]; protected getClassQueryPatterns(): string[]; protected getImportQueryPatterns(): string[]; protected extractFunctionName(node: SyntaxNode, sourceCode: string, _options?: FunctionExtractionOptions): string; private hasAttribute; private hasSelfParameter; protected extractClassName(node: SyntaxNode, sourceCode: string): string; protected extractImplementedInterfaces(node: SyntaxNode, sourceCode: string): string[] | undefined; protected extractImportPath(node: SyntaxNode, sourceCode: string): string; protected extractImportedItems(node: SyntaxNode, sourceCode: string): ImportedItem[] | undefined; private splitGroupedImports; protected extractFunctionComment(node: SyntaxNode, _sourceCode: string): string | undefined; protected extractClassComment(node: SyntaxNode, _sourceCode: string): string | undefined; private parseRustDocComment; detectFramework(sourceCode: string): string | null; } //# sourceMappingURL=rust.d.ts.map