(module)
| 320 | * @returns {number} The ordinal of the module in masks |
| 321 | */ |
| 322 | const getModuleOrdinal = (module) => { |
| 323 | let ordinal = ordinalByModule.get(module); |
| 324 | if (ordinal === undefined) { |
| 325 | ordinal = ordinalByModule.size; |
| 326 | ordinalByModule.set(module, ordinal); |
| 327 | } |
| 328 | return ordinal; |
| 329 | }; |
| 330 | |
| 331 | for (const chunk of compilation.chunks) { |
| 332 | let mask = ZERO_BIGINT; |
no test coverage detected