()
| 36 | } |
| 37 | |
| 38 | public moveToRoot() { |
| 39 | if (this.parent) { |
| 40 | this.remove(); |
| 41 | CDebugSession.ROOT.add(this); |
| 42 | } |
| 43 | } |
| 44 | |
| 45 | public broadcastDFS(cb: (s: CDebugSession) => void, fromRoot: boolean = true) { |
| 46 | const root = fromRoot ? this.getRoot() : this; |
no test coverage detected