Path 1: 33 calls (1.0)

0 (33)

Title (27) Paragraph (6)

1def insert(self, index: int, child: VNode) -> None:
2        """Insert a child node."""
3        self.children.insert(index, child)
4        child.parent = self