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 --- .../private-method-double-initialisation-get.js | 36 ++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 js/src/tests/test262/language/statements/class/elements/private-method-double-initialisation-get.js (limited to 'js/src/tests/test262/language/statements/class/elements/private-method-double-initialisation-get.js') diff --git a/js/src/tests/test262/language/statements/class/elements/private-method-double-initialisation-get.js b/js/src/tests/test262/language/statements/class/elements/private-method-double-initialisation-get.js new file mode 100644 index 0000000000..7669951721 --- /dev/null +++ b/js/src/tests/test262/language/statements/class/elements/private-method-double-initialisation-get.js @@ -0,0 +1,36 @@ +// 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() {} +} + +var obj = {}; + +new C(obj); + +assert.throws(TypeError, function() { + new C(obj); +}); + +reportCompare(0, 0); -- cgit v1.2.3