* Checks whether it can be initial. * @returns {boolean} whether or not this chunk can be an initial chunk
()
| 524 | * @returns {boolean} whether or not this chunk can be an initial chunk |
| 525 | */ |
| 526 | canBeInitial() { |
| 527 | for (const chunkGroup of this._groups) { |
| 528 | if (chunkGroup.isInitial()) return true; |
| 529 | } |
| 530 | return false; |
| 531 | } |
| 532 | |
| 533 | /** |
| 534 | * Checks whether this chunk is only initial. |
no test coverage detected