From 26a029d407be480d791972afb5975cf62c9360a6 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 19 Apr 2024 02:47:55 +0200 Subject: Adding upstream version 124.0.1. Signed-off-by: Daniel Baumann --- js/src/tests/non262/fields/unimplemented.js | 57 +++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 js/src/tests/non262/fields/unimplemented.js (limited to 'js/src/tests/non262/fields/unimplemented.js') diff --git a/js/src/tests/non262/fields/unimplemented.js b/js/src/tests/non262/fields/unimplemented.js new file mode 100644 index 0000000000..49a09468ec --- /dev/null +++ b/js/src/tests/non262/fields/unimplemented.js @@ -0,0 +1,57 @@ +// Field syntax doesn't crash the engine when fields are disabled. + +// Are fields enabled? +let fieldsEnabled = false; +try { + Function("class C { x; }"); + fieldsEnabled = true; +} catch (exc) { + assertEq(exc instanceof SyntaxError, true); +} + +// If not, run these tests. (Many other tests cover actual behavior of the +// feature when enabled.) +if (!fieldsEnabled) { + let source = `class C { + x + }`; + assertThrowsInstanceOf(() => Function(source), SyntaxError); + + source = `class C { + x = 0; + }`; + assertThrowsInstanceOf(() => Function(source), SyntaxError); + + source = `class C { + 0 = 0; + }`; + assertThrowsInstanceOf(() => Function(source), SyntaxError); + + source = `class C { + [0] = 0; + }`; + assertThrowsInstanceOf(() => Function(source), SyntaxError); + + source = `class C { + "hi" = 0; + }`; + assertThrowsInstanceOf(() => Function(source), SyntaxError); + + source = `class C { + "hi" = 0; + }`; + assertThrowsInstanceOf(() => Function(source), SyntaxError); + + source = `class C { + d = function(){}; + }`; + assertThrowsInstanceOf(() => Function(source), SyntaxError); + + source = `class C { + d = class D { x = 0; }; + }`; + assertThrowsInstanceOf(() => Function(source), SyntaxError); +} + +if (typeof reportCompare === "function") + reportCompare(true, true); -- cgit v1.2.3