summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/RegExp/prototype/Symbol.search/lastindex-no-restore.js
blob: 066d67da3ea516662cc9bcdd610321e038400ab7 (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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
// Copyright (C) 2016 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 some lastIndex writes should be skipped.
info: |
    [...]
    4. Let previousLastIndex be ? Get(rx, "lastIndex").
    5. If SameValue(previousLastIndex, 0) is false, then
       a. Perform ? Set(rx, "lastIndex", 0, true).
    [...]
    7. Let currentLastIndex be ? Get(rx, "lastIndex").
    8. If SameValue(currentLastIndex, previousLastIndex) is false, then
       a. Perform ? Set(rx, "lastIndex", previousLastIndex, true).
    [...]
features: [Symbol.search]
---*/

var lastIndexValue;
var lastIndexValueAfterExec;
var lastIndexReads;
var lastIndexWrites;
var execCallCount;
var result;

var fakeRe = {
  get lastIndex() {
    lastIndexReads++;
    return lastIndexValue;
  },
  set lastIndex(_) {
    lastIndexWrites++;
    lastIndexValue = _;
  },
  exec: function() {
    execCallCount++;
    lastIndexValue = lastIndexValueAfterExec;
    return null;
  }
};

function reset(value, valueAfterExec) {
  lastIndexValue = value;
  lastIndexValueAfterExec = valueAfterExec;
  lastIndexReads = 0;
  lastIndexWrites = 0;
  execCallCount = 0;
}

reset(0, 0);
result = RegExp.prototype[Symbol.search].call(fakeRe);
assert.sameValue(result, -1);
assert.sameValue(lastIndexValue, 0);
assert.sameValue(lastIndexReads, 2);
assert.sameValue(lastIndexWrites, 0);
assert.sameValue(execCallCount, 1);

reset(420, 420);
result = RegExp.prototype[Symbol.search].call(fakeRe);
assert.sameValue(result, -1);
assert.sameValue(lastIndexValue, 420);
assert.sameValue(lastIndexReads, 2);
assert.sameValue(lastIndexWrites, 1);
assert.sameValue(execCallCount, 1);

reportCompare(0, 0);