summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/RegExp/prototype/Symbol.match/g-init-lastindex.js
blob: f407004ff4a78e76c0d724c2f414a0bf34d3859d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
description: Initializing the value of `lastIndex` on "global" instances
es6id: 21.2.5.6
info: |
    7. If global is false, then
       [...]
    8. Else global is true,
       [...]
       c. Let setStatus be Set(rx, "lastIndex", 0, true).
features: [Symbol.match]
---*/

var r = /./g;

r.lastIndex = 1;

assert.notSameValue(r[Symbol.match]('a'), null);

reportCompare(0, 0);