/third_party/typescript/tests/baselines/reference/ |
D | APISample_WatchWithOwnWatchHost.js | 30 getCurrentDirectory: ts.sys.getCurrentDirectory, 83 getCurrentDirectory: ts.sys.getCurrentDirectory, property
|
D | APISample_Watch.js | 24 getCurrentDirectory: ts.sys.getCurrentDirectory, 97 getCurrentDirectory: ts.sys.getCurrentDirectory, property
|
D | APISample_watcher.js | 48 getCurrentDirectory: () => process.cwd(), 147 getCurrentDirectory: function () { return process.cwd(); }, method
|
/third_party/typescript/src/compiler/ |
D | watch.ts | 4 getCurrentDirectory: () => sys.getCurrentDirectory(), constant 14 getCurrentDirectory: () => system.getCurrentDirectory(), 158 …leReference = nonNilFiles[0] && prettyPathForFileError(nonNilFiles[0], host.getCurrentDirectory()); 202 const fileRef = prettyPathForFileError(file!, host.getCurrentDirectory()); 228 …me = (fileName: string) => convertToRelativePath(fileName, program.getCurrentDirectory(), getCanon… 294 … = getDirectoryPath(getNormalizedAbsolutePath(configFile.fileName, program.getCurrentDirectory())); 306 … = getDirectoryPath(getNormalizedAbsolutePath(configFile.fileName, program.getCurrentDirectory())); 367 …getNormalizedAbsolutePath(program.getRootFileNames()[reason.index], program.getCurrentDirectory()); 476 const currentDir = program.getCurrentDirectory(); 626 getCurrentDirectory: memoize(() => host.getCurrentDirectory()), [all …]
|
D | sys.ts | 504 getCurrentDirectory: System["getCurrentDirectory"]; property 520 getCurrentDirectory, 753 … isIgnoredByWatchOptions(path, options, useCaseSensitiveFileNames, getCurrentDirectory); 805 getCurrentDirectory: System["getCurrentDirectory"], 808 …hesExclude(pathToCheck, options?.excludeFiles, useCaseSensitiveFileNames, getCurrentDirectory()) || 809 …Exclude(pathToCheck, options?.excludeDirectories, useCaseSensitiveFileNames, getCurrentDirectory()) 818 getCurrentDirectory: System["getCurrentDirectory"], 827 …e || !isIgnoredByWatchOptions(fileName, options, useCaseSensitiveFileNames, getCurrentDirectory)) { 849 getCurrentDirectory: System["getCurrentDirectory"]; property 870 getCurrentDirectory, [all …]
|
D | moduleSpecifiers.ts | 56 getCurrentDirectory: host.getCurrentDirectory, 222 …host.getFileIncludeReasons().get(toPath(modulePath.path, host.getCurrentDirectory(), info.getCanon… 305 …lizedAbsolutePath(getPathsBasePath(compilerOptions, host) || baseUrl!, host.getCurrentDirectory()); 323 …toPath(getDirectoryPath(compilerOptions.configFilePath), host.getCurrentDirectory(), info.getCanon… 324 info.getCanonicalFileName(host.getCurrentDirectory()); 397 const cwd = host.getCurrentDirectory(); 454 …const importedFilePath = toPath(importedFileName, host.getCurrentDirectory(), hostGetCanonicalFile…
|
D | resolutionCache.ts | 177 …const getCurrentDirectory = memoize(() => resolutionHost.getCurrentDirectory!()); // TODO: GH#18217 constant 187 getCurrentDirectory(), 197 getCurrentDirectory(), 217 …TrailingDirectorySeparator(getNormalizedAbsolutePath(rootDirForResolution, getCurrentDirectory())); 610 …ath(failedLookupLocation) : getNormalizedAbsolutePath(failedLookupLocation, getCurrentDirectory()); 632 … getDirectoryPath(getNormalizedAbsolutePath(failedLookupLocation, getCurrentDirectory())), 1104 …ctiveTypeRoots(options, { directoryExists: directoryExistsForTypeRootWatch, getCurrentDirectory });
|
/third_party/typescript/src/testRunner/unittests/services/ |
D | languageService.ts | 38 getCurrentDirectory: () => ".", 105 getCurrentDirectory: () => "/project", 184 getCurrentDirectory: () => system.getCurrentDirectory(), 204 getCurrentDirectory: () => system.getCurrentDirectory(),
|
D | hostNewLineSupport.ts | 17 getCurrentDirectory: () => "",
|
/third_party/typescript/tests/cases/compiler/ |
D | APISample_Watch.ts | 27 getCurrentDirectory: ts.sys.getCurrentDirectory,
|
D | APISample_WatchWithOwnWatchHost.ts | 33 getCurrentDirectory: ts.sys.getCurrentDirectory,
|
D | APISample_watcher.ts | 51 getCurrentDirectory: () => process.cwd(),
|
/third_party/typescript/src/harness/ |
D | fakesHosts.ts | 81 public getCurrentDirectory() { 99 …extensions, exclude, include, this.useCaseSensitiveFileNames, this.getCurrentDirectory(), depth, p… 252 public getCurrentDirectory(): string { 253 return this.sys.getCurrentDirectory(); 323 return vpath.resolve(this.getCurrentDirectory(), this.defaultLibLocation); 331 …t canonicalFileName = this.getCanonicalFileName(vpath.resolve(this.getCurrentDirectory(), fileName…
|
D | harnessLanguageService.ts | 268 getCurrentDirectory(): string { return virtualFileSystemRoot; } 390 getCurrentDirectory(): string { return this.nativeHost.getCurrentDirectory(); } 805 getCurrentDirectory(): string { 806 return this.host.getCurrentDirectory();
|
/third_party/typescript/src/testRunner/unittests/config/ |
D | commandLineParsing.ts | 16 getCurrentDirectory: () => "/", 207 getCurrentDirectory: () => "/",
|
D | tsconfigParsingWatchOptions.ts | 73 getCurrentDirectory: () => "/",
|
/third_party/typescript/src/services/ |
D | shims.ts | 73 getCurrentDirectory(): string; method 94 getCurrentDirectory(): string; method 473 public getCurrentDirectory(): string { method in ts.LanguageServiceShimHostAdapter 474 return this.shimHost.getCurrentDirectory(); 487 …this.shimHost.useCaseSensitiveFileNames!(), this.shimHost.getCurrentDirectory()); // TODO: GH#18217 532 …this.shimHost.useCaseSensitiveFileNames!(), this.shimHost.getCurrentDirectory()); // TODO: GH#18217 1305 …ry(host.useCaseSensitiveFileNames && host.useCaseSensitiveFileNames(), host.getCurrentDirectory());
|
D | sourcemaps.ts | 14 getCurrentDirectory(): string; method 25 const currentDirectory = host.getCurrentDirectory();
|
/third_party/typescript/src/loggedIO/ |
D | loggedIO.ts | 299 wrapper.getCurrentDirectory = () => { 304 return recordLog.currentDirectory = underlying.getCurrentDirectory(); 307 return underlying.getCurrentDirectory();
|
/third_party/typescript/src/testRunner/unittests/ |
D | programApi.ts | 115 getCurrentDirectory: () => sys.getCurrentDirectory(),
|
D | moduleResolution.ts | 513 getCurrentDirectory: () => currentDirectory, 608 getCurrentDirectory: () => currentDirectory, 1577 getCurrentDirectory: () => "/", 1616 getCurrentDirectory: () => "/", 1645 getCurrentDirectory: () => "/",
|
/third_party/typescript/src/executeCommandLine/ |
D | executeCommandLine.ts | 530 const searchPath = normalizePath(sys.getCurrentDirectory()); 536 …_a_tsconfig_json_file_at_the_current_directory_Colon_0, normalizePath(sys.getCurrentDirectory()))); 545 const currentDirectory = sys.getCurrentDirectory(); 797 const currentDirectory = host.getCurrentDirectory(); 1174 const currentDirectory = sys.getCurrentDirectory();
|
/third_party/typescript/tests/baselines/reference/docker/ |
D | vscode.log | 6 …ing) => string; getScriptSnapshot: (fileName: string) => { ...; }; getCurrentDirectory: () => stri…
|
/third_party/typescript/src/server/ |
D | utilitiesPublic.ts | 42 projectRootPath: project.getCurrentDirectory() as Path,
|
/third_party/typescript/src/jsTyping/ |
D | types.ts | 86 getCurrentDirectory?(): string; method
|