summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/RegExp/prototype/Symbol.search/set-lastindex-init-samevalue.js
blob: 155420d0282206e1b34d5f9f6db1dc09315b0165 (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
// Copyright (C) 2020 Alexey Shvayka. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
esid: sec-regexp.prototype-@@search
description: >
  `previousLastIndex` value is compared using SameValue. 
info: |
  RegExp.prototype [ @@search ] ( string )

  [...]
  4. Let previousLastIndex be ? Get(rx, "lastIndex").
  5. If SameValue(previousLastIndex, 0) is false, then
    a. Perform ? Set(rx, "lastIndex", 0, true).
  6. Let result be ? RegExpExec(rx, S).
  [...]
features: [Symbol.search]
---*/

var re = /(?:)/;
var execLastIndex;

re.lastIndex = -0;
re.exec = function() {
  execLastIndex = re.lastIndex;
  return null;
};

assert.sameValue(re[Symbol.search](""), -1);
assert.sameValue(execLastIndex, 0);

reportCompare(0, 0);