Home
last modified time | relevance | path

Searched refs:fsEntry (Results 1 – 1 of 1) sorted by relevance

/third_party/typescript/src/harness/
DvirtualFileSystemWithWatch.ts656 subEntries.forEach(fsEntry => {
657 if (isFsFolder(fsEntry)) {
658 this.deleteFolder(fsEntry.fullPath, recursive);
661 this.removeFileOrFolder(fsEntry);
772 …te getRealFsEntry<T extends FSEntry>(isFsEntry: (fsEntry: FSEntry) => fsEntry is T, path: Path, fs…
773 if (isFsEntry(fsEntry)) {
774 return fsEntry;
777 if (isFsSymLink(fsEntry)) {
778 return this.getRealFsEntry(isFsEntry, this.toPath(fsEntry.symLink));
781 if (fsEntry) {
[all …]