summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/annexB/built-ins/RegExp/prototype/Symbol.split/toint32-limit-recompiles-source.js
blob: 351407cf65168e2be311e30294c1a7b4ae5dae4e (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
// Copyright (C) 2017 André Bargull. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
esid: sec-regexp.prototype-@@split
description: >
  Side-effects in ToUint32 may recompile the regular expression.
info: |
  21.2.5.11 RegExp.prototype [ @@split ] ( string, limit )
    ...
    10. Let splitter be ? Construct(C, « rx, newFlags »).
    ...
    13. If limit is undefined, let lim be 2^32-1; else let lim be ? ToUint32(limit).
    ...

features: [Symbol.split]
---*/

var regExp = /a/;
var limit = {
  valueOf: function() {
    regExp.compile("b");
    return -1;
  }
};

var result = regExp[Symbol.split]("abba", limit);

assert.sameValue(result.length, 3);
assert.sameValue(result[0], "");
assert.sameValue(result[1], "bb");
assert.sameValue(result[2], "");

reportCompare(0, 0);