Description
Version
v20.0.0
Platform
Darwin MacBookPro2019.local 22.6.0 Darwin Kernel Version 22.6.0: Wed Oct 4 21:25:26 PDT 2023; root:xnu-8796.141.3.701.17~4/RELEASE_X86_64 x86_64
Subsystem
No response
What steps will reproduce the bug?
Run the following JavaScript in Node v20:
const x = ['x'];
assert.deepStrictEqual(new Set([x, ['y']]), new Set([x, ['y']])); // AssertionError
An AssertionError is reported, which is unexpected.
How often does it reproduce? Is there a required condition?
It is reproducible 100% of the time. It is not reproducible in v18.20.2, but reproducible starting in v20. No required condition.
What is the expected behavior? Why is that the expected behavior?
The expected behavior is that the assertion should pass. Both sets contain a reference to x
(reference-equal) and also a new object ['y']
(deep-equal), so the sets should be deeply equal.
What do you see instead?
An assertion error is reported:
AssertionError [ERR_ASSERTION]: Values have same structure but are not reference-equal:
Set(2) { [ 'x' ], [ 'y' ] }
Additional information
The bug occurs only when comparing Set
objects, with a mix of elements where some elements are objects compared by reference (===) and other elements are objects compared by deep equality.
I believe it was introduced by #46593. Looking at the changed code, a new "SafeSet" is created only containing the values (of type 'object'
) in a
that are not in b
. So this SafeSet only contains ['y']
. But then on line 468 of comparisons.js, for (const val of b)
, every value of b
is checked, including the reference x
, which causes the failure because the SafeSet does not contain it.