summaryrefslogtreecommitdiffstats
path: root/js/src/tests/non262/Record/properties.js
blob: c8139488c0d01bb21a184197d93d953ae8bcb2f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// |reftest| skip-if(!this.hasOwnProperty("Record"))

var rec = Record({
  x: 1,
  4: 2,
  z: 10n ** 100n,
  w: Record({}),
  n: Tuple(),
  [Symbol.iterator]: 4,
});

assertEq(rec.x, 1);
assertEq(rec[4], 2);
assertEq(rec.z, 10n ** 100n);
assertEq(typeof rec.w, "record");
assertEq(typeof rec.n, "tuple");
assertEq(rec[Symbol.iterator], undefined);
assertEq(rec.hasOwnProperty, undefined);

if (typeof reportCompare === "function") reportCompare(0, 0);