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.

27 lines 1.5 kB
import { BaseLanguageHandler } from './base.js'; import { SyntaxNode } from '../parser.js'; import { FunctionExtractionOptions } from '../types.js'; import { ImportedItem } from '../codeMapModel.js'; export declare class DartHandler extends BaseLanguageHandler { protected getFunctionQueryPatterns(): string[]; protected getClassQueryPatterns(): string[]; protected getImportQueryPatterns(): string[]; protected extractFunctionName(node: SyntaxNode, sourceCode: string, _options?: FunctionExtractionOptions): string; private hasAnnotation; private isFlutterLifecycleMethod; private isConstructor; private isGetter; private isSetter; 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; private extractShowHideItems; private extractAsClause; protected extractFunctionComment(node: SyntaxNode, _sourceCode: string): string | undefined; protected extractClassComment(node: SyntaxNode, _sourceCode: string): string | undefined; private parseDartDocComment; detectFramework(sourceCode: string): string | null; } //# sourceMappingURL=dart.d.ts.map