summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/String/prototype/indexOf/position-tointeger-errors.js
blob: f21a3d01449f6fe64c382203c41f8565ee9e56da (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
33
34
35
36
37
38
39
40
41
// Copyright (C) 2017 Josh Wolfe. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: String.prototype.indexOf type coercion for position parameter
esid: sec-string.prototype.indexof
info: |
  String.prototype.indexOf ( searchString [ , position ] )

  4. Let pos be ? ToInteger(position).
features: [Symbol, Symbol.toPrimitive, computed-property-names]
---*/

assert.throws(TypeError, function() {
  "".indexOf("", Symbol("1"));
}, "ToInteger: Symbol => TypeError");
assert.throws(TypeError, function() {
  "".indexOf("", Object(Symbol("1")));
}, "ToInteger: unbox object with internal slot => Symbol => TypeError");
assert.throws(TypeError, function() {
  "".indexOf("", {
    [Symbol.toPrimitive]: function() {
      return Symbol("1");
    }
  });
}, "ToInteger: @@toPrimitive => Symbol => TypeError");
assert.throws(TypeError, function() {
  "".indexOf("", {
    valueOf: function() {
      return Symbol("1");
    }
  });
}, "ToInteger: valueOf => Symbol => TypeError");
assert.throws(TypeError, function() {
  "".indexOf("", {
    toString: function() {
      return Symbol("1");
    }
  });
}, "ToInteger: toString => Symbol => TypeError");

reportCompare(0, 0);