Searched refs:applyChanges (Results 1 – 25 of 27) sorted by relevance
12
/third_party/typescript/tests/cases/fourslash/ |
D | codeFixUndeclaredInStaticMethod.ts | 27 applyChanges: true, 48 applyChanges: true, 70 applyChanges: true, 93 applyChanges: true,
|
D | codeFixUndeclaredMethod.ts | 29 applyChanges: true, 51 applyChanges: true,
|
D | codeFixUndeclaredMethodObjectLiteralArgs.ts | 20 applyChanges: true 34 applyChanges: true
|
D | importNameCodeFix_jsx6.ts | 27 applyChanges: false, 37 applyChanges: false,
|
D | importNameCodeFix_importType9.ts | 26 applyChanges: true, 35 applyChanges: true,
|
D | importNameCodeFix_require_importVsRequire_moduleTarget.ts | 19 applyChanges: false, 34 applyChanges: false,
|
D | codeFixAddMissingMember16.ts | 12 applyChanges: true,
|
D | codeFixForgottenThisPropertyAccess_static.ts | 16 applyChanges: true,
|
D | codeFixUndeclaredMethodFunctionArgs.ts | 19 applyChanges: true,
|
D | codeFixAddMissingFunctionDeclaration2.ts | 10 applyChanges: true,
|
D | codeFixAddMissingFunctionDeclaration7.ts | 14 applyChanges: true,
|
D | codeFixAddMissingFunctionDeclaration12.ts | 16 applyChanges: true,
|
D | codefixUnreferenceableDecoratorMetadata2.ts | 29 applyChanges: false,
|
D | codefixUnreferenceableDecoratorMetadata3.ts | 45 applyChanges: false,
|
D | codeFixSplitTypeOnlyImport.ts | 22 applyChanges: false,
|
D | codeFixRenameUnmatchedParameter3.ts | 40 applyChanges: true
|
D | codefixUnreferenceableDecoratorMetadata1.ts | 30 applyChanges: false,
|
D | codeFixRenameUnmatchedParameterJS3.ts | 46 applyChanges: true
|
D | fourslash.ts | 272 applyChanges?: boolean,
|
/third_party/typescript/src/testRunner/unittests/services/extract/ |
D | helpers.ts | 122 const newText = textChanges.applyChanges(sourceFile.text, edits[0].textChanges);
|
/third_party/typescript/src/testRunner/unittests/services/ |
D | convertToAsyncFunction.ts | 365 const newText = textChanges.applyChanges(sourceFile.text, changes[0].textChanges);
|
D | organizeImports.ts | 1020 const newText = textChanges.applyChanges(testContent, changes[0].textChanges);
|
D | textChanges.ts | 56 const modified = textChanges.applyChanges(sourceFile.text, changes[0].textChanges);
|
/third_party/typescript/src/harness/ |
D | fourslashImpl.ts | 543 this.applyChanges(changes); 2879 this.applyChanges(fixes[index].changes); 2903 this.applyChanges(codeAction.changes); 2978 if (options.applyChanges) { 2995 …const newText = ts.textChanges.applyChanges(this.getFileContent(this.activeFile.fileName), change.… 3010 …nge.isNewFile ? ts.first(change.textChanges).newText : ts.textChanges.applyChanges(oldText!, chang… 3066 private applyChanges(changes: readonly ts.FileTextChanges[]): void { 3641 const actualNewContent = ts.textChanges.applyChanges(fileContent, textChanges);
|
/third_party/typescript/src/services/ |
D | textChanges.ts | 1072 return applyChanges(nonFormattedText, changes) + newLineCharacter; 1115 return applyChanges(text, changes); 1132 export function applyChanges(text: string, changes: readonly TextChange[]): string { function
|
12