summaryrefslogtreecommitdiff
path: root/test/built-ins/RegExp/prototype/Symbol.match/g-init-lastindex.js
blob: bcc8cb8b9414d94f11f3545a41392cbfb15e7306 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// 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);