The index of this node in the parent's children. -1 if this is a root.
| 182 | |
| 183 | // The index of this node in the parent's children. -1 if this is a root. |
| 184 | int child_index() const { return data_.child_index; } |
| 185 | |
| 186 | // The type of traversal from parent to this node. |
| 187 | ChildKind parent_relation() const { return data_.parent_relation; } |