* Fetches the chunk reference containing the webpack bootstrap code * @returns {Chunk | null} returns the runtime chunk or null if there is none
()
| 66 | * @returns {Chunk | null} returns the runtime chunk or null if there is none |
| 67 | */ |
| 68 | getRuntimeChunk() { |
| 69 | if (this._runtimeChunk) return this._runtimeChunk; |
| 70 | for (const parent of this.parentsIterable) { |
| 71 | if (parent instanceof Entrypoint) return parent.getRuntimeChunk(); |
| 72 | } |
| 73 | return null; |
| 74 | } |
| 75 | |
| 76 | /** |
| 77 | * Sets the chunk with the entrypoint modules for an entrypoint. |
no outgoing calls
no test coverage detected