public tryRemoveChild()

in src/construct.ts [370:374]


  public tryRemoveChild(childName: string): boolean {
    if (!(childName in this._children)) { return false; }
    delete this._children[childName];
    return true;
  }