* Adds a child chunk group to the current group. * @param {ChunkGroup} group chunk group to add * @returns {boolean} returns true if chunk group was added
(group)
| 304 | * @returns {boolean} returns true if chunk group was added |
| 305 | */ |
| 306 | addChild(group) { |
| 307 | const size = this._children.size; |
| 308 | this._children.add(group); |
| 309 | return size !== this._children.size; |
| 310 | } |
| 311 | |
| 312 | /** |
| 313 | * Returns the child chunk groups reachable from this group. |
no test coverage detected