summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Array/prototype/sort/call-with-primitive.js
blob: f1d1554da8adc63ac845c7ee5e5b037744184913 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// Copyright (C) 2021 Alexey Shvayka. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
esid: sec-array.prototype.sort
description: >
  This value is coerced to an object.
info: |
  Array.prototype.sort ( comparefn )

  [...]
  2. Let obj be ? ToObject(this value).
  [...]
  12. Return obj.
features: [Symbol, BigInt]
---*/

assert.throws(TypeError, function() {
  [].sort.call(undefined);
}, "undefined");

assert.throws(TypeError, function() {
  [].sort.call(null);
}, "null");

assert([].sort.call(false) instanceof Boolean, "boolean");
assert([].sort.call(0) instanceof Number, "number");
assert([].sort.call("") instanceof String, "string");
assert([].sort.call(Symbol()) instanceof Symbol, "symbol");
assert([].sort.call(0n) instanceof BigInt, "bigint");

reportCompare(0, 0);