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.43 kB
TypeScript
import { BaseLanguageHandler } from './base.js';
import { SyntaxNode } from '../parser.js';
import { FunctionExtractionOptions } from '../types.js';
import { ImportedItem } from '../codeMapModel.js';
export declare class KotlinHandler extends BaseLanguageHandler {
protected getFunctionQueryPatterns(): string[];
protected getClassQueryPatterns(): string[];
protected getImportQueryPatterns(): string[];
protected extractFunctionName(node: SyntaxNode, sourceCode: string, _options?: FunctionExtractionOptions): string;
private hasAnnotation;
private isAndroidLifecycleMethod;
private isExtensionFunction;
private getReceiverType;
protected extractClassName(node: SyntaxNode, sourceCode: string): string;
protected extractParentClass(node: SyntaxNode, sourceCode: string): string | undefined;
protected extractImplementedInterfaces(node: SyntaxNode, sourceCode: string): string[] | undefined;
protected extractImportPath(node: SyntaxNode, sourceCode: string): string;
protected extractImportedItems(node: SyntaxNode, sourceCode: string): ImportedItem[] | undefined;
protected extractFunctionComment(node: SyntaxNode, _sourceCode: string): string | undefined;
protected extractClassComment(node: SyntaxNode, _sourceCode: string): string | undefined;
private parseKDocComment;
detectFramework(sourceCode: string): string | null;
}
//# sourceMappingURL=kotlin.d.ts.map