Children returns the list of children.
()
| 302 | |
| 303 | // Children returns the list of children. |
| 304 | func (n *Node) Children() []INode { |
| 305 | |
| 306 | return n.children |
| 307 | } |
| 308 | |
| 309 | // Add adds the specified node to the list of children and sets its parent pointer. |
| 310 | // If the specified node had a parent, the specified node is removed from the original parent's list of children. |
no outgoing calls
no test coverage detected