in lib/utils/mapped-list.js [36:47]
constructor(symbols, compilation, shouldLog = false) {
const { compiler, moduleGraph, chunkGraph } = compilation;
this.symbols = symbols;
this.rule = getMatchedRule(compiler);
this.allModules = getAllModules(compilation);
this.moduleGraph = moduleGraph;
this.chunkGraph = chunkGraph;
this.spriteModules = this.allModules.filter(module => isModuleShouldBeExtracted(module, moduleGraph));
this.shouldLog = shouldLog;
this.items = this.create();
}