(/** @type {Chunk | null | undefined} */ chunk)
| 195 | /** @type {Set<Chunk>} */ |
| 196 | const seen = new Set(); |
| 197 | const push = (/** @type {Chunk | null | undefined} */ chunk) => { |
| 198 | if (!chunk || seen.has(chunk) || chunk === entryChunk) return; |
| 199 | if (chunksLoadedByAncestorTags.has(chunk)) return; |
| 200 | seen.add(chunk); |
| 201 | ordered.push(chunk); |
| 202 | }; |
| 203 | if (runtimeChunk !== entryChunk) { |
| 204 | push(runtimeChunk); |
| 205 | } |
no test coverage detected