This commit is contained in:
Sheetal Nandi 2017-08-18 11:15:42 -07:00
Родитель a99c04e8f9
Коммит b66b752561
3 изменённых файлов: 5 добавлений и 2 удалений

Просмотреть файл

@ -2736,7 +2736,7 @@ namespace ts {
function fileExists(fileName: string): boolean {
const path = toPath(fileName);
const result = getCachedFileSystemEntriesForBaseDir(path);
return (result && hasEntry(result.files, getBaseNameOfFileName(fileName))) ||
return result && hasEntry(result.files, getBaseNameOfFileName(fileName)) ||
host.fileExists(fileName);
}

Просмотреть файл

@ -30,6 +30,9 @@ namespace ts {
mtime?: Date;
}
/**
* Partial interface of the System thats needed to support the caching of directory structure
*/
export interface PartialSystem {
writeFile(path: string, data: string, writeByteOrderMark?: boolean): void;
fileExists(path: string): boolean;

Просмотреть файл

@ -3,7 +3,7 @@
namespace ts {
function verifyMissingFilePaths(missingPaths: ReadonlyArray<Path>, expected: ReadonlyArray<string>) {
assert.isDefined(missingPaths);
const map = arrayToMap(expected, k => k, _v => true);
const map = arrayToSet(expected) as Map<boolean>;
for (const missing of missingPaths) {
const value = map.get(missing);
assert.isTrue(value, `${missing} to be ${value === undefined ? "not present" : "present only once"}, in actual: ${missingPaths} expected: ${expected}`);