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/constructor.js | 37 +++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 js/src/tests/non262/Record/constructor.js (limited to 'js/src/tests/non262/Record/constructor.js') diff --git a/js/src/tests/non262/Record/constructor.js b/js/src/tests/non262/Record/constructor.js new file mode 100644 index 0000000000..827179c68e --- /dev/null +++ b/js/src/tests/non262/Record/constructor.js @@ -0,0 +1,37 @@ +// |reftest| skip-if(!this.hasOwnProperty("Record")) + +assertThrowsInstanceOf( + () => new Record(), + TypeError, + "Record is not a constructor" +); + +assertEq(typeof Record({}), "record"); +assertEq(typeof Object(Record({})), "object"); +assertEq(Record({}) instanceof Record, false); + +// TODO: It's still not decided what the prototype of records should be +//assertThrowsInstanceOf(() => Object(Record({})) instanceof Record, TypeError); +// assertEq(Record.prototype, null); +// assertEq(Record({}).__proto__, null); +// assertEq(Object(Record({})).__proto__, null); + +assertThrowsInstanceOf( + () => Record(), + TypeError, + "can't convert undefined to object" +); + +assertThrowsInstanceOf( + () => Record(undefined), + TypeError, + "can't convert undefined to object" +); + +assertThrowsInstanceOf( + () => Record(null), + TypeError, + "can't convert null to object" +); + +if (typeof reportCompare === "function") reportCompare(0, 0); -- cgit v1.2.3