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 --- ...ate-method-double-initialisation-get-and-set.js | 37 ++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 js/src/tests/test262/language/statements/class/elements/private-method-double-initialisation-get-and-set.js (limited to 'js/src/tests/test262/language/statements/class/elements/private-method-double-initialisation-get-and-set.js') diff --git a/js/src/tests/test262/language/statements/class/elements/private-method-double-initialisation-get-and-set.js b/js/src/tests/test262/language/statements/class/elements/private-method-double-initialisation-get-and-set.js new file mode 100644 index 0000000000..09ab4f46c9 --- /dev/null +++ b/js/src/tests/test262/language/statements/class/elements/private-method-double-initialisation-get-and-set.js @@ -0,0 +1,37 @@ +// Copyright (C) 2021 André Bargull. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. + +/*--- +description: > + Throws TypeError when attempting to install private methods multiple times. +esid: sec-privatemethodoraccessoradd +info: | + 7.3.28 PrivateMethodOrAccessorAdd ( method, O ) + 1. Assert: method.[[Kind]] is either method or accessor. + 2. Let entry be ! PrivateElementFind(method.[[Key]], O). + 3. If entry is not empty, throw a TypeError exception. + ... + +features: [class, class-methods-private] +---*/ + +class Base { + constructor(o) { + return o; + } +} + +class C extends Base { + get #p() {} + set #p(x) {} +} + +var obj = {}; + +new C(obj); + +assert.throws(TypeError, function() { + new C(obj); +}); + +reportCompare(0, 0); -- cgit v1.2.3