summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/RegExpStringIteratorPrototype/next/custom-regexpexec-match-get-0-tostring.js
blob: 3a494cb95f97eb33bdf6f1ea3ef8f296837631dc (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
43
44
45
46
47
48
49
50
// Copyright (C) 2018 Peter Wong. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: pending
description: Behavior when first match is coerced to a empty string
info: |
  %RegExpStringIteratorPrototype%.next ( )
    [...]
    9. Let match be ? RegExpExec(R, S).
    10. If match is null, then
      [...]
    11. Else,
      a. If global is true,
        i. Let matchStr be ? ToString(? Get(match, "0")).
        ii. If matchStr is the empty string,
          1. Let thisIndex be ? ToLength(? Get(R, "lastIndex").
          2. Let nextIndex be ! AdvanceStringIndex(S, thisIndex, fullUnicode).
          3. Perform ? Set(R, "lastIndex", nextIndex, true).
        iii. Return ! CreateIterResultObject(match, false).
features: [Symbol.matchAll]
---*/

var iter = /./g[Symbol.matchAll]('');

var execResult = {
  get '0'() {
    return {
      toString() { return ''; }
    };
  }
};

var internalRegExp;
RegExp.prototype.exec = function () {
  internalRegExp = this;
  return execResult;
};

var result = iter.next();
assert.sameValue(internalRegExp.lastIndex, 1);
assert.sameValue(result.value, execResult);
assert(!result.done);


result = iter.next();
assert.sameValue(internalRegExp.lastIndex, 2);
assert.sameValue(result.value, execResult);
assert(!result.done);

reportCompare(0, 0);