File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
turbopack/crates/turbopack-core/src/module_graph Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -249,12 +249,15 @@ pub async fn compute_merged_modules(module_graph: Vc<ModuleGraph>) -> Result<Vc<
249
249
// A list of all different execution traces (orderings) of all modules, initially a union of
250
250
// the partition of each chunk's modules (one for each ESM subtree in each chunks), but
251
251
// further split up later on.
252
+ // This is a list (one per chunk group, initially) of lists (one per ESM subtree) of modules
252
253
let mut lists;
253
254
let mut lists_reverse_indices: FxIndexMap <
254
255
ResolvedVc < Box < dyn MergeableModule > > ,
255
256
FxIndexSet < ListOccurrence > ,
256
257
> = FxIndexMap :: default ( ) ;
257
258
259
+ // Once we do the reconciliation below, we need to insert new lists, but the lists are per
260
+ // chunk group, so we put them into this one.
258
261
#[ allow( non_snake_case) ]
259
262
let LISTS_COMMON_IDX : usize ;
260
263
You can’t perform that action at this time.
0 commit comments