appendChild method

  1. @override
void appendChild(
  1. Node child
)
override

Reparent child to this node.

Implementation

@override void appendChild(Node child) {
	throw "attempted to append child to text node";
}