gotoParent method
Implementation
bool gotoParent() {
_checkNotDisposed();
if (_stack.isEmpty) return false;
_node = _stack.removeLast().parent;
return true;
}
bool gotoParent() {
_checkNotDisposed();
if (_stack.isEmpty) return false;
_node = _stack.removeLast().parent;
return true;
}