Does cross-referencing in WeakMap prevent garbage collection?

64 Views Asked by At

I'm extending this question: Would a "circular" reference be treated as "reachability" for a WeakMap?

If I have 2 WeakMaps that have entries whose values cross references the keys, would this prevent garbage collection or not?

Example:

    let obj1 = {}, obj2 = {}
    obj1.ref = obj2
    obj2.ref = obj1

    const map1 = new WeakMap([[obj2, obj2]])
    const map2 = new WeakMap([[obj1, obj1]])

    obj1 = obj2 = null

    // obj1, obj2 garbage collected?

Answer in this question assume but doesn't confirm: Can a bi-directional WeakMap lead to a memory leak?

0

There are 0 best solutions below