MCPcopy
hub / github.com/webpack/webpack / getFileIterable

Method getFileIterable

lib/FileSystemInfo.js:601–611  ·  lib/FileSystemInfo.js::Snapshot.getFileIterable

* Gets file iterable. * @returns {Iterable<string>} iterable

()

Source from the content-addressed store, hash-verified

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.

Callers 4

addCacheDependenciesMethod · 0.80
applyMethod · 0.80
processCacheResultMethod · 0.80

Calls 1

_createIterableMethod · 0.95

Tested by

no test coverage detected