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.

23 lines 1.35 kB
import { BaseLanguageHandler } from './base.js'; import { SyntaxNode } from '../parser.js'; import { FunctionExtractionOptions } from '../types.js'; import { ImportedItem } from '../codeMapModel.js'; export declare class ElixirHandler extends BaseLanguageHandler { protected getFunctionQueryPatterns(): string[]; protected getClassQueryPatterns(): string[]; protected getImportQueryPatterns(): string[]; protected extractFunctionName(node: SyntaxNode, sourceCode: string, _options?: FunctionExtractionOptions): string; private hasTestMacro; private hasCallbackAttribute; private isPhoenixControllerAction; private isGenServerCallback; 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 extractImportOptions; protected extractFunctionComment(node: SyntaxNode, sourceCode: string): string | undefined; protected extractClassComment(node: SyntaxNode, sourceCode: string): string | undefined; detectFramework(sourceCode: string): string | null; } //# sourceMappingURL=elixir.d.ts.map