(node: WatchNode)
| 80 | }; |
| 81 | |
| 82 | function isWatchNodeDestroyed(node: WatchNode) { |
| 83 | return node.fn === null && node.schedule === null; |
| 84 | } |
| 85 | |
| 86 | function destroyWatchNode(node: WatchNode) { |
| 87 | if (!isWatchNodeDestroyed(node)) { |
no outgoing calls
no test coverage detected
searching dependent graphs…