summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/harness/deepEqual-circular.js
blob: c2be2c27b93745b8c262ebf8efa8d5accd229bff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright 2019 Ron Buckton. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
description: >
  values compare correctly with circular references.
includes: [deepEqual.js]
---*/

var a = { x: 1 };
var b = { x: 1 };
a.a = a;
a.b = b;
b.a = b;
b.b = a;

assert.deepEqual(a, b);

reportCompare(0, 0);