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.31 kB
TypeScript
import { BaseLanguageHandler } from './base.js';
import { SyntaxNode } from '../parser.js';
import { FunctionExtractionOptions } from '../types.js';
export declare class ObjectiveCHandler extends BaseLanguageHandler {
protected getFunctionQueryPatterns(): string[];
protected getClassQueryPatterns(): string[];
protected getImportQueryPatterns(): string[];
protected extractFunctionName(node: SyntaxNode, sourceCode: string, _options?: FunctionExtractionOptions): string;
private extractFunctionDeclaratorName;
private isUIKitLifecycleMethod;
private isDelegateMethod;
private hasIBActionAttribute;
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 extractFunctionComment(node: SyntaxNode, _sourceCode: string): string | undefined;
protected extractClassComment(node: SyntaxNode, _sourceCode: string): string | undefined;
private parseDoxygenComment;
detectFramework(sourceCode: string): string | null;
}
//# sourceMappingURL=objectivec.d.ts.map