Check if this analyzer can handle a given file
(filePath: string, content?: string)
| 19 | |
| 20 | /** Check if this analyzer can handle a given file */ |
| 21 | canAnalyze(filePath: string, content?: string): boolean; |
| 22 | |
| 23 | /** Parse a file and extract structured information */ |
| 24 | analyze(filePath: string, content: string): Promise<AnalysisResult>; |
no outgoing calls
no test coverage detected