summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/String/prototype/trimEnd/this-value-symbol-typeerror.js
blob: 515021202389ef0ee22b1b43a926709a9ad091ab (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
// 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: Type error when "this" value is a Symbol
info: |
  Runtime Semantics: TrimString ( string, where )
  2. Let S be ? ToString(str).

  ToString ( argument )
  Argument Type: Symbol
  Result: Throw a TypeError exception
features: [string-trimming, String.prototype.trimEnd]
---*/

assert.sameValue(typeof String.prototype.trimEnd, "function");

var trimEnd = String.prototype.trimEnd;
var symbol = Symbol();

assert.throws(
  TypeError,
  function() {
    trimEnd.call(symbol);
  },
  'String.prototype.trimEnd.call(Symbol())'
);

reportCompare(0, 0);