summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/String/prototype/trimEnd/this-value-not-obj-coercible.js
blob: 5ceea74ebf9ab92a663c7142f55b8964cde1bfc4 (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
// Copyright (C) 2017 Valerie Young. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
esid: sec-string.prototype.trimEnd
description: The "this" value must be object-coercible
info: |
  1. Let O be ? RequireObjectCoercible(this value).
features: [string-trimming, String.prototype.trimEnd]
---*/

var trimEnd = String.prototype.trimEnd;

assert.sameValue(typeof trimEnd, 'function');

assert.throws(TypeError, function() {
  trimEnd.call(undefined);
}, 'undefined');

assert.throws(TypeError, function() {
  trimEnd.call(null);
}, 'null');

reportCompare(0, 0);