Searched refs:newImport (Results 1 – 3 of 3) sorted by relevance
/third_party/typescript/src/services/ |
D | organizeImports.ts | 506 …nIndex(sortedImports: SortedReadonlyArray<AnyImportOrRequireStatement>, newImport: AnyImportOrRequ… 507 … const index = binarySearch(sortedImports, newImport, identity, compareImportsOrRequireStatements); 511 …fierInsertionIndex(sortedImports: SortedReadonlyArray<ImportSpecifier>, newImport: ImportSpecifier… 512 … const index = binarySearch(sortedImports, newImport, identity, compareImportOrExportSpecifiers);
|
D | utilities.ts | 2071 for (const newImport of sortedNewImports) { constant 2072 …ionIndex = OrganizeImports.getImportDeclarationInsertionIndex(existingImportStatements, newImport); 2077 …changes.insertNodeBefore(sourceFile, existingImportStatements[0], newImport, /*blankLineBetween*/ … 2081 changes.insertNodeAfter(sourceFile, prevImport, newImport);
|
/third_party/typescript/src/services/refactors/ |
D | convertExport.ts | 205 …const newImport = makeImport(/*default*/ undefined, [makeImportSpecifier(exportName, ref.text)], c… constant 206 changes.insertNodeAfter(importingSourceFile, clause.parent, newImport);
|