(node: TreeNode | undefined)
| 255 | |
| 256 | // Marks a node and all of its parents as not-deleted so they will not be cleaned up. |
| 257 | private markAsNotDeleted(node: TreeNode | undefined) { |
| 258 | while (node) { |
| 259 | node.isPotentiallyDeleted = false; |
| 260 | node = node.parent; |
| 261 | } |
| 262 | } |
| 263 | |
| 264 | public removeAllPotentiallyDeletedNodes(suite: SuiteData) { |
| 265 | // Delete nodes that were marked as potentially deleted and then never updated. |
no outgoing calls
no test coverage detected