mirror of
https://github.com/tc39/test262.git
synced 2025-07-15 01:54:38 +02:00
26 lines
751 B
JavaScript
26 lines
751 B
JavaScript
// 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: >
|
||
Return abrupt from ToNumber(next).
|
||
info: |
|
||
String.fromCodePoint ( ...codePoints )
|
||
|
||
1. Let result be the empty String.
|
||
2. For each element next of codePoints, do
|
||
a. Let nextCP be ? ToNumber(next).
|
||
b. If nextCP is not an integral Number, throw a RangeError exception.
|
||
c. If ℝ(nextCP) < 0 or ℝ(nextCP) > 0x10FFFF, throw a RangeError exception.
|
||
...
|
||
features: [Symbol, String.fromCodePoint]
|
||
---*/
|
||
|
||
assert.throws(TypeError, function() {
|
||
String.fromCodePoint(Symbol());
|
||
});
|
||
|
||
assert.throws(TypeError, function() {
|
||
String.fromCodePoint(42, Symbol());
|
||
});
|