()
| 4155 | } |
| 4156 | |
| 4157 | _getChunkGraphEntries() { |
| 4158 | /** @type {Set<Chunk>} */ |
| 4159 | const treeEntries = new Set(); |
| 4160 | for (const ep of this.entrypoints.values()) { |
| 4161 | const chunk = ep.getRuntimeChunk(); |
| 4162 | if (chunk) treeEntries.add(chunk); |
| 4163 | } |
| 4164 | for (const ep of this.asyncEntrypoints) { |
| 4165 | const chunk = ep.getRuntimeChunk(); |
| 4166 | if (chunk) treeEntries.add(chunk); |
| 4167 | } |
| 4168 | return treeEntries; |
| 4169 | } |
| 4170 | |
| 4171 | /** |
| 4172 | * Process runtime requirements. |
no test coverage detected