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 --- .../argument-is-regexp-and-instance-is-number.js | 35 ++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 js/src/tests/test262/built-ins/String/prototype/split/argument-is-regexp-and-instance-is-number.js (limited to 'js/src/tests/test262/built-ins/String/prototype/split/argument-is-regexp-and-instance-is-number.js') diff --git a/js/src/tests/test262/built-ins/String/prototype/split/argument-is-regexp-and-instance-is-number.js b/js/src/tests/test262/built-ins/String/prototype/split/argument-is-regexp-and-instance-is-number.js new file mode 100644 index 0000000000..bc958c246d --- /dev/null +++ b/js/src/tests/test262/built-ins/String/prototype/split/argument-is-regexp-and-instance-is-number.js @@ -0,0 +1,35 @@ +// Copyright 2009 the Sputnik authors. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. + +/*--- +info: | + String.prototype.split(separator, limit): + i) can be transferred to other kinds of objects for use as a method. + separator and limit can be any kinds of object since: + ii) if separator is not RegExp ToString(separator) performs and + iii) ToInteger(limit) performs +es5id: 15.5.4.14_A1_T17 +description: Argument is regexp, and instance is Number +---*/ + +var __re = /\u0037\u0037/g; + +Number.prototype.split = String.prototype.split; + +var __split = (6776767677.006771122677555).split(__re); + +assert.sameValue(typeof __split, "object", 'The value of `typeof __split` is "object"'); + +assert.sameValue( + __split.constructor, + Array, + 'The value of __split.constructor is expected to equal the value of Array' +); + +assert.sameValue(__split.length, 4, 'The value of __split.length is 4'); +assert.sameValue(__split[0], "6", 'The value of __split[0] is "6"'); +assert.sameValue(__split[1], "67676", 'The value of __split[1] is "67676"'); +assert.sameValue(__split[2], ".006", 'The value of __split[2] is ".006"'); +assert.sameValue(__split[3], "1", 'The value of __split[3] is "1"'); + +reportCompare(0, 0); -- cgit v1.2.3