(node: LiveVariableNode)
| 571 | } |
| 572 | |
| 573 | public removeWatchExpr(node: LiveVariableNode) { |
| 574 | try { |
| 575 | if (this.variables.removeChild(node)) { |
| 576 | this.saveState(); |
| 577 | this.fire(); |
| 578 | } |
| 579 | } |
| 580 | catch (e) { |
| 581 | // Sometimes we get a garbage node if this is called while we are (aggressively) polling |
| 582 | console.error('Failed to remove node. Invalid node?', node); |
| 583 | } |
| 584 | } |
| 585 | |
| 586 | public editNode(node: LiveVariableNode) { |
| 587 | if (!node.isRootChild()) { |
no test coverage detected