summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/RegExp/prototype/Symbol.replace/g-init-lastindex-err.js
blob: df97b72216286cefd20ae9bf73d7290f90c8c4d6 (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
// 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 initializing `lastIndex` property for
     "global" instances
es6id: 21.2.5.8
info: |
    21.2.5.8 RegExp.prototype [ @@replace ] ( string, replaceValue )

    [...]
    10. If global is true, then
        [...]
        c. Let setStatus be Set(rx, "lastIndex", 0, true).
        d. ReturnIfAbrupt(setStatus).
features: [Symbol.replace]
---*/

var r = /./g;

// Avoid false positives from unrelated TypeErrors
r[Symbol.replace]('x', 'x');

Object.defineProperty(r, 'lastIndex', { writable: false });

assert.throws(TypeError, function() {
  r[Symbol.replace]('x', 'x');
});

reportCompare(0, 0);