You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* @property {ChunkGroup} chunkGroup the chunk group
41
42
* @property {RuntimeSpec} runtime the runtimes
42
-
* @property {ModuleSetPlus} minAvailableModules current minimal set of modules available at this point
43
-
* @property {boolean} minAvailableModulesOwned true, if minAvailableModules is owned and can be modified
43
+
* @property {ModuleSetPlus | undefined} minAvailableModules current minimal set of modules available at this point
44
+
* @property {boolean | undefined} minAvailableModulesOwned true, if minAvailableModules is owned and can be modified
44
45
* @property {ModuleSetPlus[]} availableModulesToBeMerged enqueued updates to the minimal set of available modules
45
46
* @property {Set<Module>=} skippedItems modules that were skipped because module is already available in parent chunks (need to reconsider when minAvailableModules is shrinking)
46
47
* @property {Set<[Module, ConnectionState]>=} skippedModuleConnections referenced modules that where skipped because they were not active in this runtime
47
-
* @property {ModuleSetPlus} resultingAvailableModules set of modules available including modules from this chunk group
48
-
* @property {Set<ChunkGroupInfo>} children set of children chunk groups, that will be revisited when availableModules shrink
49
-
* @property {Set<ChunkGroupInfo>} availableSources set of chunk groups that are the source for minAvailableModules
50
-
* @property {Set<ChunkGroupInfo>} availableChildren set of chunk groups which depend on the this chunk group as availableSource
48
+
* @property {ModuleSetPlus | undefined} resultingAvailableModules set of modules available including modules from this chunk group
49
+
* @property {Set<ChunkGroupInfo> | undefined} children set of children chunk groups, that will be revisited when availableModules shrink
50
+
* @property {Set<ChunkGroupInfo> | undefined} availableSources set of chunk groups that are the source for minAvailableModules
51
+
* @property {Set<ChunkGroupInfo> | undefined} availableChildren set of chunk groups which depend on the this chunk group as availableSource
51
52
* @property {number} preOrderIndex next pre order index
52
53
* @property {number} postOrderIndex next post order index
53
54
* @property {boolean} chunkLoading has a chunk loading mechanism
0 commit comments