Пример #1
0
  void removeChild(Node child) {
    if (_id_ == child) {
      _id_ = null;
      return;
    }

    if (_arrow_ == child) {
      _arrow_ = null;
      return;
    }

    if (_prodTransform_.remove(child)) {
      return;
    }

    if (_alts_.remove(child)) {
      return;
    }
  }