blob: d670ae0e033bbe361e411a4a531c00a151846ad4 [file] [log] [blame]
// Copyright (C) 2016 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-string.prototype.localecompare
description: The "this" value must be object-coercible
info: |
1. Let O be ? RequireObjectCoercible(this value).
---*/
var localeCompare = String.prototype.localeCompare;
assert.sameValue(typeof localeCompare, 'function');
assert.throws(TypeError, function() {
localeCompare.call(undefined, '');
}, 'undefined');
assert.throws(TypeError, function() {
localeCompare.call(null, '');
}, 'null');