(name: string, type: ChildSetType, category: NodeCategory, minChildren = 0, maxChildren = -1)
| 74 | } |
| 75 | |
| 76 | addChildSet(name: string, type: ChildSetType, category: NodeCategory, minChildren = 0, maxChildren = -1) { |
| 77 | this.childSets[name] = new ChildSet(this, name, type, category, minChildren, maxChildren) |
| 78 | this.childSetOrder.push(name) |
| 79 | } |
| 80 | |
| 81 | getChildrenToKeepOnDelete(): SplootNode[] { |
| 82 | return [] |
no outgoing calls
no test coverage detected