| /third_party/typescript/src/server/ |
| D | typingsCache.ts | 12 …t(p: Project, typeAcquisition: TypeAcquisition, unresolvedImports: SortedReadonlyArray<string> | u… 31 readonly typings: SortedReadonlyArray<string>; 32 readonly unresolvedImports: SortedReadonlyArray<string> | undefined; 77 …ction unresolvedImportsChanged(imports1: SortedReadonlyArray<string> | undefined, imports2: Sorted… 99 …enqueueInstallTypingsForProject(project: Project, unresolvedImports: SortedReadonlyArray<string> |… 126 …pilerOptions, typeAcquisition: TypeAcquisition, unresolvedImports: SortedReadonlyArray<string>, ne…
|
| D | utilitiesPublic.ts | 9 export const emptyArray: SortedReadonlyArray<never> = createSortedArray<never>(); 34 …ect: Project, typeAcquisition: TypeAcquisition, unresolvedImports: SortedReadonlyArray<string>, ca…
|
| D | project.ts | 154 private externalFiles: SortedReadonlyArray<string> | undefined; 170 lastCachedUnresolvedImportsList: SortedReadonlyArray<string> | undefined; 227 typingFiles: SortedReadonlyArray<string> = emptyArray; 855 getExternalFiles(): SortedReadonlyArray<string> { 1219 updateTypingFiles(typingFiles: SortedReadonlyArray<string>) { 1354 … const oldExternalFiles = this.externalFiles || emptyArray as SortedReadonlyArray<string>; 1989 …ram, cachedUnresolvedImportsPerFile: ESMap<Path, readonly string[]>): SortedReadonlyArray<string> {
|
| /third_party/typescript/src/jsTyping/ |
| D | types.ts | 19 readonly unresolvedImports: SortedReadonlyArray<string>; 95 readonly unresolvedImports: SortedReadonlyArray<string>;
|
| /third_party/typescript/src/services/ |
| D | organizeImports.ts | 498 …orted(imports: readonly AnyImportOrRequireStatement[]): imports is SortedReadonlyArray<AnyImportOr… 502 …ecifiersAreSorted(imports: readonly ImportSpecifier[]): imports is SortedReadonlyArray<ImportSpeci… 506 …export function getImportDeclarationInsertionIndex(sortedImports: SortedReadonlyArray<AnyImportOrR… 511 …export function getImportSpecifierInsertionIndex(sortedImports: SortedReadonlyArray<ImportSpecifie…
|
| /third_party/typescript/src/compiler/ |
| D | corePublic.ts | 19 export interface SortedReadonlyArray<T> extends ReadonlyArray<T> { interface
|
| D | core.ts | 750 …ion deduplicateSorted<T>(array: SortedReadonlyArray<T>, comparer: EqualityComparer<T> | Comparer<T… 751 if (array.length === 0) return emptyArray as any as SortedReadonlyArray<T>; 774 return deduplicated as any as SortedReadonlyArray<T>; 801 export function sortAndDeduplicate<T>(array: readonly string[]): SortedReadonlyArray<string>; 802 …adonly T[], comparer: Comparer<T>, equalityComparer?: EqualityComparer<T>): SortedReadonlyArray<T>; 803 …only T[], comparer?: Comparer<T>, equalityComparer?: EqualityComparer<T>): SortedReadonlyArray<T> { 1023 export function sort<T>(array: readonly T[], comparer?: Comparer<T>): SortedReadonlyArray<T> { 1024 … return (array.length === 0 ? array : array.slice().sort(comparer)) as SortedReadonlyArray<T>; 1058 …export function stableSort<T>(array: readonly T[], comparer: Comparer<T>): SortedReadonlyArray<T> { 1061 return indices.map(i => array[i]) as SortedArray<T> as SortedReadonlyArray<T>;
|
| D | sourcemap.ts | 656 let generatedMappings: SortedReadonlyArray<MappedPosition> | undefined; 657 let sourceMappings: readonly SortedReadonlyArray<SourceMappedPosition>[] | undefined;
|
| D | watchUtilities.ts | 144 function hasEntry(entries: SortedReadonlyArray<Canonicalized>, name: Canonicalized) {
|
| D | debug.ts | 330 const enumMemberCache = new Map<any, SortedReadonlyArray<[number, string]>>();
|
| D | program.ts | 2703 function getOptionsDiagnostics(): SortedReadonlyArray<Diagnostic> { 2719 function getGlobalDiagnostics(): SortedReadonlyArray<Diagnostic> { 2720 …peChecker().getGlobalDiagnostics().slice()) : emptyArray as any as SortedReadonlyArray<Diagnostic>;
|
| D | utilitiesPublic.ts | 9 …ndDeduplicateDiagnostics<T extends Diagnostic>(diagnostics: readonly T[]): SortedReadonlyArray<T> {
|
| /third_party/typescript/src/testRunner/unittests/tsserver/ |
| D | typingsInstaller.ts | 203 …server.Project, typeAcquisition: TypeAcquisition, unresolvedImports: SortedReadonlyArray<string>) { 336 …server.Project, typeAcquisition: TypeAcquisition, unresolvedImports: SortedReadonlyArray<string>) { 435 …server.Project, typeAcquisition: TypeAcquisition, unresolvedImports: SortedReadonlyArray<string>) { 475 …server.Project, typeAcquisition: TypeAcquisition, unresolvedImports: SortedReadonlyArray<string>) { 522 …server.Project, typeAcquisition: TypeAcquisition, unresolvedImports: SortedReadonlyArray<string>) {
|
| D | helpers.ts | 221 …server.Project, typeAcquisition: TypeAcquisition, unresolvedImports: SortedReadonlyArray<string>) {
|
| /third_party/typescript/src/tsserver/ |
| D | nodeServer.ts | 532 …ect: Project, typeAcquisition: TypeAcquisition, unresolvedImports: SortedReadonlyArray<string>): v…
|
| /third_party/typescript/lib/ |
| D | tsserverlibrary.d.ts | 28 interface SortedReadonlyArray<T> extends ReadonlyArray<T> { interface 4645 …AndDeduplicateDiagnostics<T extends Diagnostic>(diagnostics: readonly T[]): SortedReadonlyArray<T>; 6040 readonly unresolvedImports: SortedReadonlyArray<string>; 6089 readonly unresolvedImports: SortedReadonlyArray<string>; 7503 const emptyArray: SortedReadonlyArray<never>; 7524 …ect: Project, typeAcquisition: TypeAcquisition, unresolvedImports: SortedReadonlyArray<string>, ca… 10521 …t(p: Project, typeAcquisition: TypeAcquisition, unresolvedImports: SortedReadonlyArray<string> | u… 10661 getExternalFiles(): SortedReadonlyArray<string>;
|
| D | typescript.d.ts | 28 interface SortedReadonlyArray<T> extends ReadonlyArray<T> { interface 4645 …AndDeduplicateDiagnostics<T extends Diagnostic>(diagnostics: readonly T[]): SortedReadonlyArray<T>; 6040 readonly unresolvedImports: SortedReadonlyArray<string>; 6089 readonly unresolvedImports: SortedReadonlyArray<string>;
|
| D | typescriptServices.d.ts | 28 interface SortedReadonlyArray<T> extends ReadonlyArray<T> { interface 4645 …AndDeduplicateDiagnostics<T extends Diagnostic>(diagnostics: readonly T[]): SortedReadonlyArray<T>; 6040 readonly unresolvedImports: SortedReadonlyArray<string>; 6089 readonly unresolvedImports: SortedReadonlyArray<string>;
|
| /third_party/typescript/tests/baselines/reference/api/ |
| D | tsserverlibrary.d.ts | 28 interface SortedReadonlyArray<T> extends ReadonlyArray<T> { interface 4645 …AndDeduplicateDiagnostics<T extends Diagnostic>(diagnostics: readonly T[]): SortedReadonlyArray<T>; 6040 readonly unresolvedImports: SortedReadonlyArray<string>; 6089 readonly unresolvedImports: SortedReadonlyArray<string>; 7503 const emptyArray: SortedReadonlyArray<never>; 7524 …ect: Project, typeAcquisition: TypeAcquisition, unresolvedImports: SortedReadonlyArray<string>, ca… 10521 …t(p: Project, typeAcquisition: TypeAcquisition, unresolvedImports: SortedReadonlyArray<string> | u… 10661 getExternalFiles(): SortedReadonlyArray<string>;
|
| D | typescript.d.ts | 28 interface SortedReadonlyArray<T> extends ReadonlyArray<T> { interface 4645 …AndDeduplicateDiagnostics<T extends Diagnostic>(diagnostics: readonly T[]): SortedReadonlyArray<T>; 6040 readonly unresolvedImports: SortedReadonlyArray<string>; 6089 readonly unresolvedImports: SortedReadonlyArray<string>;
|