summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/RegExp/prototype/Symbol.replace/result-coerce-index-err.js
blob: 9f7f177ee66128cc7e4cc25f67a49e21a4cf7dbc (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
// Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
description: >
    Behavior when error is thrown while type coercing `index` property of
    result
es6id: 21.2.5.8
info: |
    [...]
    13. Repeat, while done is false
        a. Let result be RegExpExec(rx, S).
        [...]
    16. Repeat, for each result in results,
        [...]
        g. Let position be ToInteger(Get(result, "index")).
        h. ReturnIfAbrupt(position).
features: [Symbol.replace]
---*/

var r = /./;
var uncoercibleIndex = {
  index: {
    valueOf: function() {
      throw new Test262Error();
    }
  }
};
r.exec = function() {
  return uncoercibleIndex;
};

assert.throws(Test262Error, function() {
  r[Symbol.replace]('a', 'b');
});

reportCompare(0, 0);