(cb: (s: CDebugSession) => void)
| 48 | } |
| 49 | |
| 50 | protected _broadcastDFS(cb: (s: CDebugSession) => void) { |
| 51 | for (const child of this.children) { |
| 52 | child._broadcastDFS(cb); |
| 53 | } |
| 54 | cb(this); |
| 55 | } |
| 56 | |
| 57 | private remove() { |
| 58 | this.parent.removeChild(this); |