Parse a file and extract structured information
(filePath: string, content: string)
| 22 | |
| 23 | /** Parse a file and extract structured information */ |
| 24 | analyze(filePath: string, content: string): Promise<AnalysisResult>; |
| 25 | |
| 26 | /** Detect framework-specific patterns and metadata from the entire codebase */ |
| 27 | detectCodebaseMetadata(rootPath: string): Promise<CodebaseMetadata>; |
no outgoing calls
no test coverage detected