summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/RegExp/prototype/Symbol.search/set-lastindex-restore-err.js
blob: 03f11054ba9dca4f655b846b1bbe8db74da86b7e (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
42
43
44
45
46
47
48
49
50
51
52
// Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
es6id: 21.2.5.9
description: >
    Behavior when error thrown while restoring `lastIndex` property following
    match execution
info: |
    [...]
    8. If SameValue(currentLastIndex, previousLastIndex) is false, then
        a. Perform ? Set(rx, "lastIndex", previousLastIndex, true).
features: [Symbol.search]
---*/

var callCount;
var poisonedLastIndex = {
  get lastIndex() { return this.lastIndex_; },
  set lastIndex(_) {
    if (callCount === 1) {
      throw new Test262Error();
    }
    this.lastIndex_ = _;
  },
  exec: function() {
    callCount += 1;
    return null;
  }
};
var nonWritableLastIndex = {
  exec: function() {
    Object.defineProperty(
      nonWritableLastIndex, 'lastIndex', { writable: false }
    );
    callCount += 1;
    return null;
  }
};

callCount = 0;
assert.throws(Test262Error, function() {
  RegExp.prototype[Symbol.search].call(poisonedLastIndex);
});
assert.sameValue(callCount, 1, 'Match executed ("poisoned" lastIndex)');

callCount = 0;
assert.throws(TypeError, function() {
  RegExp.prototype[Symbol.search].call(nonWritableLastIndex);
});
assert.sameValue(callCount, 1, 'Match executed (non-writable lastIndex)');

reportCompare(0, 0);