You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* @param {boolean} onlyRecordFailures - if true then function won't try to actually load files but instead record all attempts as failures. This flag is necessary
773
775
* in cases when we know upfront that all load attempts will fail (because containing folder does not exists) however we still need to record all failed lookup locations.
Copy file name to clipboardExpand all lines: src/compiler/watchedProgram.ts
+7-10Lines changed: 7 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -256,6 +256,7 @@ namespace ts {
256
256
257
257
constsourceFilesCache=createMap<HostFileInfo|string>();// Cache that stores the source file and version info
258
258
letmissingFilePathsRequestedForRelease: Path[];// These paths are held temparirly so that we can remove the entry from source file cache if the file is not tracked by missing files
259
+
lethasInvalidatedResolution: HasInvalidatedResolution;// Passed along to see if source file has invalidated resolutions
0 commit comments