From 36d22d82aa202bb199967e9512281e9a53db42c9 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 21:33:14 +0200 Subject: Adding upstream version 115.7.0esr. Signed-off-by: Daniel Baumann --- js/src/tests/non262/Record/literal.js | 41 +++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 js/src/tests/non262/Record/literal.js (limited to 'js/src/tests/non262/Record/literal.js') diff --git a/js/src/tests/non262/Record/literal.js b/js/src/tests/non262/Record/literal.js new file mode 100644 index 0000000000..f0d9d67e22 --- /dev/null +++ b/js/src/tests/non262/Record/literal.js @@ -0,0 +1,41 @@ +// |reftest| skip-if(!this.hasOwnProperty("Record")) + +let rec = #{ x: 1, "y": 2, 0: 3, 1n: 4, [`key${4}`]: 5 }; + +assertEq(rec.x, 1); +assertEq(rec.y, 2); +assertEq(rec[0], 3); +assertEq(rec[1], 4); +assertEq(rec.key4, 5); + +let dup = #{ x: 1, x: 2 }; +assertEq(dup.x, 2); + +assertThrowsInstanceOf( + () => #{ [Symbol()]: 1 }, + TypeError, + "Symbols cannot be used as record keys" + ); + +let rec2 = #{ x: 1, ...{ a: 2, z: 3 }, b: 4, ...{ d: 5 } }; +assertEq(rec2.x, 1); +assertEq(rec2.a, 2); +assertEq(rec2.z, 3); +assertEq(rec2.b, 4); +assertEq(rec2.d, 5); + +assertThrowsInstanceOf( + () => #{ ...{ [Symbol()]: 1 } }, + TypeError, + "Symbols cannot be used as record keys" +); + +let rec3 = #{ + ...Object.defineProperty({}, "x", { value: 1 }), + ...Object.defineProperty({}, Symbol(), { value: 2 }), +}; +assertEq(rec3.x, undefined); + +let rec4 = #{ ...{}, ...{}, ...{} }; + +if (typeof reportCompare === "function") reportCompare(0, 0); -- cgit v1.2.3