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 --- .../prototype/unicodeSets/this-val-invalid-obj.js | 36 ++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 js/src/tests/test262/built-ins/RegExp/prototype/unicodeSets/this-val-invalid-obj.js (limited to 'js/src/tests/test262/built-ins/RegExp/prototype/unicodeSets/this-val-invalid-obj.js') diff --git a/js/src/tests/test262/built-ins/RegExp/prototype/unicodeSets/this-val-invalid-obj.js b/js/src/tests/test262/built-ins/RegExp/prototype/unicodeSets/this-val-invalid-obj.js new file mode 100644 index 0000000000..def04a6521 --- /dev/null +++ b/js/src/tests/test262/built-ins/RegExp/prototype/unicodeSets/this-val-invalid-obj.js @@ -0,0 +1,36 @@ +// Copyright (C) 2022 Mathias Bynens, Ron Buckton, and the V8 project authors. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. + +/*--- +esid: sec-get-regexp.prototype.unicodeSets +description: Invoked on an object without an [[OriginalFlags]] internal slot +info: | + get RegExp.prototype.unicodeSets -> RegExpHasFlag + + 1. Let R be the this value. + 2. If Type(R) is not Object, throw a TypeError exception. + 3. If R does not have an [[OriginalFlags]] internal slot, then + a. If SameValue(R, %RegExpPrototype%) is true, return undefined. + b. Otherwise, throw a TypeError exception. +features: [regexp-v-flag] +---*/ + +var unicodeSets = Object.getOwnPropertyDescriptor(RegExp.prototype, 'unicodeSets').get; + +assert.throws(TypeError, function() { + unicodeSets.call({}); +}, 'ordinary object'); + +assert.throws(TypeError, function() { + unicodeSets.call([]); +}, 'array exotic object'); + +assert.throws(TypeError, function() { + unicodeSets.call(arguments); +}, 'arguments object'); + +assert.throws(TypeError, function() { + unicodeSets.call(() => {}); +}, 'function object'); + +reportCompare(0, 0); -- cgit v1.2.3