Home
last modified time | relevance | path

Searched refs:MapLike (Results 1 – 25 of 34) sorted by relevance

12

/third_party/typescript/src/typingsInstaller/
DnodeTypingsInstaller.ts46 entries: MapLike<MapLike<string>>;
49 …typesRegistryFilePath: string, host: InstallTypingHost, log: Log): ESMap<string, MapLike<string>> {
54 return new Map<string, MapLike<string>>();
64 return new Map<string, MapLike<string>>();
82 readonly typesRegistry: ESMap<string, MapLike<string>>;
148 const typesRegistry: { [key: string]: MapLike<string> } = {};
/third_party/typescript/src/jsTyping/
DjsTyping.ts13 dependencies?: MapLike<string>;
14 devDependencies?: MapLike<string>;
16 optionalDependencies?: MapLike<string>;
17 peerDependencies?: MapLike<string>;
27 …export function isTypingUpToDate(cachedTyping: CachedTyping, availableTypingVersions: MapLike<stri…
113 typesRegistry: ReadonlyESMap<string, MapLike<string>>):
Dtypes.ts42 readonly typesRegistry: MapLike<MapLike<string>>;
/third_party/typescript/src/compiler/
Dbuilder.ts696 fileInfos: MapLike<BuilderState.FileInfo>;
698 referencedMap?: MapLike<string[]>;
699 exportedModulesMap?: MapLike<string[]>;
711 const fileInfos: MapLike<BuilderState.FileInfo> = {};
722 const referencedMap: MapLike<string[]> = {};
730 const exportedModulesMap: MapLike<string[]> = {};
1170 …function getMapOfReferencedSet(mapLike: MapLike<readonly string[]> | undefined, toPath: (path: str…
DcorePublic.ts15 export interface MapLike<T> { interface
DmoduleNameResolver.ts111 typesVersions?: MapLike<MapLike<string[]>>;
187 paths: MapLike<string[]>;
224 export function getPackageJsonTypesVersionsPaths(typesVersions: MapLike<MapLike<string[]>>) {
1404 …xtensions: Extensions, moduleName: string, baseDirectory: string, paths: MapLike<string[]>, loader…
Dcore.ts60 export function createMapFromTemplate<T>(template: MapLike<T>): ESMap<string, T> {
1257 export function hasProperty(map: MapLike<any>, key: string): boolean {
1267 export function getProperty<T>(map: MapLike<T>, key: string): T | undefined {
1274 export function getOwnKeys<T>(map: MapLike<T>): string[] {
1307 const _entries = Object.entries || (<T>(obj: MapLike<T>) => {
1316 export function getEntries<T>(obj: MapLike<T>): [string, T][] {
1358 …export function equalOwnProperties<T>(left: MapLike<T> | undefined, right: MapLike<T> | undefined,…
DwatchPublic.ts264 let wildcardDirectories: MapLike<WatchDirectoryFlags> | undefined;
DmoduleSpecifiers.ts435 …hs(relativeToBaseUrlWithIndex: string, relativeToBaseUrl: string, paths: MapLike<readonly string[]…
DcommandLineParser.ts3238 …e }: ConfigFileSpecs, path: string, useCaseSensitiveFileNames: boolean): MapLike<WatchDirectoryFla…
3253 const wildcardDirectories: MapLike<WatchDirectoryFlags> = {};
/third_party/typescript/tests/cases/compiler/
DAPISample_watcher.ts33 const files: ts.MapLike<{ version: number }> = {};
/third_party/typescript/src/services/
Dtranspile.ts7 renamedDependencies?: MapLike<string>;
Dshims.ts32 …typesRegistry: ReadonlyESMap<string, MapLike<string>>; // The map of available typings in npm t…
360 …const resolutionsInFile = <MapLike<string>>JSON.parse(this.shimHost.getModuleResolutionsForFile!(c…
372 …const typeDirectivesForFile = <MapLike<ResolvedTypeReferenceDirective>>JSON.parse(this.shimHost.ge…
Dservices.ts905 export function toEditorSettings(optionsAsMap: MapLike<any>): MapLike<any> {
916 const settings: MapLike<any> = {};
DstringCompletions.ts461 …string, baseDirectory: string, fileExtensions: readonly string[], paths: MapLike<string[]>, host: …
/third_party/typescript/src/tsserver/
DnodeServer.ts94 …execFileSync(file: string, args: string[], options: { stdio: "ignore", env: MapLike<string> }): st…
478 …fork(modulePath: string, args: string[], options?: { execArgv: string[], env?: MapLike<string> }):…
513 private typesRegistryCache: ESMap<string, MapLike<string>> | undefined;
/third_party/typescript/src/testRunner/unittests/tsserver/
Dhelpers.ts104 readonly typesRegistry = new Map<string, MapLike<string>>(),
161 const dependencies: MapLike<any> = {};
168 export function createTypesRegistry(...list: string[]): ESMap<string, MapLike<string>> {
180 const map = new Map<string, MapLike<string>>();
/third_party/typescript/src/testRunner/unittests/tsc/
Dhelpers.ts92 const actualReadFileMap: MapLike<number> = {};
/third_party/typescript/src/typingsInstallerCore/
DtypingsInstaller.ts3 devDependencies: MapLike<any>;
106 abstract readonly typesRegistry: ESMap<string, MapLike<string>>;
/third_party/typescript/tests/baselines/reference/
DAPISample_watcher.js29 const files: ts.MapLike<{ version: number }> = {};
/third_party/typescript/lib/
Dprotocol.d.ts2618 paths?: MapLike<string[]>;
2832 …ionsValue = string | number | boolean | (string | number)[] | string[] | MapLike<string[]> | Plugi…
2850 interface MapLike<T> { interface
Dtypescript.d.ts25 interface MapLike<T> { interface
2806 …ionsValue = string | number | boolean | (string | number)[] | string[] | MapLike<string[]> | Plugi…
2864 paths?: MapLike<string[]>;
3011 wildcardDirectories?: MapLike<WatchDirectoryFlags>;
6462 renamedDependencies?: MapLike<string>;
/third_party/typescript/src/harness/
DharnessLanguageService.ts333 const imports: ts.MapLike<string> = {};
346 const resolutions: ts.MapLike<ts.ResolvedTypeReferenceDirective> = {};
DfourslashInterfaceImpl.ts42 public setTypesRegistry(map: ts.MapLike<void>): void {
/third_party/typescript/src/server/
Dprotocol.ts3370 paths?: MapLike<string[]>;

12