gotoParent method

bool gotoParent()

Implementation

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