summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/RegExp/prototype/Symbol.matchAll/this-lastindex-cached.js
blob: 0c669c359403bd484cf939e2100a9ea251d68d59 (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
// Copyright (C) 2018 Peter Wong. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: pending
description: Verify regexp's lastIndex is cached
info: |
  RegExp.prototype [ @@matchAll ] ( string )
    [...]
    3. Return ? MatchAllIterator(R, string).

  MatchAllIterator ( R, O )
    [...]
    2. If ? IsRegExp(R) is true, then
      [...]
      f. Let lastIndex be ? ToLength(? Get(R, "lastIndex")).
      g. Perform ? Set(matcher, "lastIndex", lastIndex, true).
features: [Symbol.matchAll]
includes: [compareArray.js, compareIterator.js, regExpUtils.js]
---*/

var regexp = /./g;
regexp.lastIndex = {
  valueOf() {
    return 2;
  }
};
var str = 'abcd';
var iter = regexp[Symbol.matchAll](str);

// Verify lastIndex is cached at the time of calling @@matchAll
regexp.lastIndex = 0;

assert.compareIterator(iter, [
  matchValidator(['c'], 2, str),
  matchValidator(['d'], 3, str)
]);

reportCompare(0, 0);