(file)
| 6345 | scheduleNextPollIfNotAlreadyScheduled(pollingInterval); |
| 6346 | } |
| 6347 | function addChangedFileToLowPollingIntervalQueue(file) { |
| 6348 | changedFilesInLastPoll.push(file); |
| 6349 | scheduleNextPollIfNotAlreadyScheduled(PollingInterval.Low); |
| 6350 | } |
| 6351 | function scheduleNextPollIfNotAlreadyScheduled(pollingInterval) { |
| 6352 | if (!pollingIntervalQueue(pollingInterval).pollScheduled) { |
| 6353 | scheduleNextPoll(pollingInterval); |
no test coverage detected