()
| 123707 | timerToInvalidateFailedLookupResolutions = host.setTimeout(invalidateResolutionsOfFailedLookup, 250); |
| 123708 | } |
| 123709 | function invalidateResolutionsOfFailedLookup() { |
| 123710 | timerToInvalidateFailedLookupResolutions = undefined; |
| 123711 | if (resolutionCache.invalidateResolutionsOfFailedLookupLocations()) { |
| 123712 | scheduleProgramUpdate(); |
| 123713 | } |
| 123714 | } |
| 123715 | // Upon detecting a file change, wait for 250ms and then perform a recompilation. This gives batch |
| 123716 | // operations (such as saving all modified files in an editor) a chance to complete before we kick |
| 123717 | // off a new compilation. |
nothing calls this directly
no test coverage detected