From c00087e12970388e7f9892da88d3c082b31c0431 Mon Sep 17 00:00:00 2001 From: Alexey Shvayka Date: Tue, 2 Mar 2021 20:31:37 +0200 Subject: [PATCH] Test Array.prototype.sort called with a primitive --- .../prototype/sort/call-with-primitive.js | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 test/built-ins/Array/prototype/sort/call-with-primitive.js diff --git a/test/built-ins/Array/prototype/sort/call-with-primitive.js b/test/built-ins/Array/prototype/sort/call-with-primitive.js new file mode 100644 index 0000000000..aef1c66de3 --- /dev/null +++ b/test/built-ins/Array/prototype/sort/call-with-primitive.js @@ -0,0 +1,30 @@ +// 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");