(file, pollingInterval)
| 6341 | } |
| 6342 | } |
| 6343 | function addToPollingIntervalQueue(file, pollingInterval) { |
| 6344 | pollingIntervalQueue(pollingInterval).push(file); |
| 6345 | scheduleNextPollIfNotAlreadyScheduled(pollingInterval); |
| 6346 | } |
| 6347 | function addChangedFileToLowPollingIntervalQueue(file) { |
| 6348 | changedFilesInLastPoll.push(file); |
| 6349 | scheduleNextPollIfNotAlreadyScheduled(PollingInterval.Low); |
no test coverage detected