()
| 5015 | } |
| 5016 | |
| 5017 | function updateDocCountIfReady() { |
| 5018 | if (!metaDoc || !allDocsProcessed) { |
| 5019 | return; |
| 5020 | } |
| 5021 | // caching the docCount saves a lot of time in allDocs() and |
| 5022 | // info(), which is why we go to all the trouble of doing this |
| 5023 | metaDoc.docCount += docCountDelta; |
| 5024 | metaStore.put(metaDoc); |
| 5025 | } |
| 5026 | |
| 5027 | function fetchExistingDocs() { |
| 5028 |
no outgoing calls
no test coverage detected
searching dependent graphs…