The destroy method for container has the line
const oldChildren = this.removeChildren(0, this.children.length);
however in a linkedList the children array always returns length zero (empty array).
This causes an out of range exception in the removeChildren method
The destroy method for container has the line
const oldChildren = this.removeChildren(0, this.children.length);
however in a linkedList the children array always returns length zero (empty array).This causes an out of range exception in the removeChildren method