* Similar to validateByRetainingPathFromNodes but creates the snapshot from scratch. * @returns {object[]}
(...args)
| 332 | * @returns {object[]} |
| 333 | */ |
| 334 | function validateByRetainingPath(...args) { |
| 335 | const nodes = createJSHeapSnapshot(); |
| 336 | return validateByRetainingPathFromNodes(nodes, ...args); |
| 337 | } |
| 338 | |
| 339 | function getRetainingNodes(startingNode, filter) { |
| 340 | const seen = new Set(); |
no test coverage detected
searching dependent graphs…