summaryrefslogtreecommitdiff
path: root/deps/v8/test/mjsunit/regress/regress-799813.js
blob: e965ede5bbbf736e5a5b08f5b8be2ef9798c3024 (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
// Copyright 2017 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

function testAdvanceLastIndex(initial_last_index_value,
                              expected_final_last_index_value) {
  let exec_call_count = 0;
  let last_index_setter_call_count = 0;
  let final_last_index_value;

  var customRegexp = {
    get global() { return true; },
    get unicode() { return true; },
    get lastIndex() {
      return initial_last_index_value;
    },
    set lastIndex(v) {
      last_index_setter_call_count++;
      final_last_index_value = v;
    },
    exec() {
      return (exec_call_count++ == 0) ? [""] : null;
    }
  };

  RegExp.prototype[Symbol.replace].call(customRegexp);

  assertEquals(2, exec_call_count);
  assertEquals(2, last_index_setter_call_count);
  assertEquals(expected_final_last_index_value, final_last_index_value);
}

testAdvanceLastIndex(-1, 1);
testAdvanceLastIndex( 0, 1);
testAdvanceLastIndex(2**31 - 2, 2**31 - 1);
testAdvanceLastIndex(2**31 - 1, 2**31 - 0);
testAdvanceLastIndex(2**32 - 3, 2**32 - 2);
testAdvanceLastIndex(2**32 - 2, 2**32 - 1);
testAdvanceLastIndex(2**32 - 1, 2**32 - 0);
testAdvanceLastIndex(2**53 - 2, 2**53 - 1);
testAdvanceLastIndex(2**53 - 1, 2**53 - 0);
testAdvanceLastIndex(2**53 - 0, 2**53 - 0);