(
projectFileName: string,
positionOrRange: number | ts.TextRange,
refactorName: string,
reportProgress: ApplyRefactoringProgressFn,
)
| 239 | } |
| 240 | |
| 241 | applyRefactoring( |
| 242 | projectFileName: string, |
| 243 | positionOrRange: number | ts.TextRange, |
| 244 | refactorName: string, |
| 245 | reportProgress: ApplyRefactoringProgressFn, |
| 246 | ): Promise<ApplyRefactoringResult | undefined> { |
| 247 | const fileName = absoluteFrom(`/${this.name}/${projectFileName}`); |
| 248 | return this.ngLS.applyRefactoring(fileName, positionOrRange, refactorName, reportProgress); |
| 249 | } |
| 250 | |
| 251 | getCombinedCodeFix(projectFileName: string, fixId: string): ts.CombinedCodeActions { |
| 252 | const fileName = absoluteFrom(`/${this.name}/${projectFileName}`); |
nothing calls this directly
no test coverage detected