(cb: (s: CDebugSession) => void, fromRoot: boolean = true)
| 43 | } |
| 44 | |
| 45 | public broadcastDFS(cb: (s: CDebugSession) => void, fromRoot: boolean = true) { |
| 46 | const root = fromRoot ? this.getRoot() : this; |
| 47 | root._broadcastDFS(cb); |
| 48 | } |
| 49 | |
| 50 | protected _broadcastDFS(cb: (s: CDebugSession) => void) { |
| 51 | for (const child of this.children) { |
no test coverage detected