diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
commit | 36d22d82aa202bb199967e9512281e9a53db42c9 (patch) | |
tree | 105e8c98ddea1c1e4784a60a5a6410fa416be2de /js/src/tests/test262/built-ins/String/fromCodePoint/to-number-conversions.js | |
parent | Initial commit. (diff) | |
download | firefox-esr-upstream.tar.xz firefox-esr-upstream.zip |
Adding upstream version 115.7.0esr.upstream/115.7.0esrupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'js/src/tests/test262/built-ins/String/fromCodePoint/to-number-conversions.js')
-rw-r--r-- | js/src/tests/test262/built-ins/String/fromCodePoint/to-number-conversions.js | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/String/fromCodePoint/to-number-conversions.js b/js/src/tests/test262/built-ins/String/fromCodePoint/to-number-conversions.js new file mode 100644 index 0000000000..452a904479 --- /dev/null +++ b/js/src/tests/test262/built-ins/String/fromCodePoint/to-number-conversions.js @@ -0,0 +1,37 @@ +// Copyright (C) 2015 the V8 project authors. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. +/*--- +es6id: 21.1.2.2 +description: > + Returns the String value with the code unit for the given coerced types. +info: | + String.fromCodePoint ( ...codePoints ) + + 1. Let codePoints be a List containing the arguments passed to this function. + ... + 5. Repeat while nextIndex < length + a. Let next be codePoints[nextIndex]. + b. Let nextCP be ToNumber(next). + ... + 6. Return the String value whose elements are, in order, the elements in the + List elements. If length is 0, the empty string is returned. + + Ref: 7.1.3 ToNumber ( argument ) +features: [String.fromCodePoint] +---*/ + +assert.sameValue(String.fromCodePoint(null), '\x00'); +assert.sameValue(String.fromCodePoint(false), '\x00'); +assert.sameValue(String.fromCodePoint(true), '\x01'); +assert.sameValue(String.fromCodePoint('42'), '\x2A'); +assert.sameValue(String.fromCodePoint('042'), '\x2A'); +assert.sameValue( + String.fromCodePoint({ + valueOf: function() { + return 31; + } + }), + '\x1F' +); + +reportCompare(0, 0); |