* Gets file iterable. * @returns {Iterable<string>} iterable
()
| 599 | * @returns {Iterable<string>} iterable |
| 600 | */ |
| 601 | getFileIterable() { |
| 602 | if (this._cachedFileIterable === undefined) { |
| 603 | this._cachedFileIterable = this._createIterable((s) => [ |
| 604 | s.fileTimestamps, |
| 605 | s.fileHashes, |
| 606 | s.fileTshs, |
| 607 | s.managedFiles |
| 608 | ]); |
| 609 | } |
| 610 | return this._cachedFileIterable; |
| 611 | } |
| 612 | |
| 613 | /** |
| 614 | * Gets context iterable. |
no test coverage detected