summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/String/prototype/matchAll/regexp-is-undefined.js
blob: 255c0d5a09a88f1a867afd3d265db38bff6f84e3 (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
// 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 regexp is null
info: |
  String.prototype.matchAll ( regexp )
    1. Let O be ? RequireObjectCoercible(this value).
    2. If regexp is neither undefined nor null, then
      [...]
    3. Return ? MatchAllIterator(regexp, O).

  MatchAllIterator( regexp, O )
    [...]
    2. If ? IsRegExp(regexp) is true, then
      [...]
    3. Else,
      a. Let R be RegExpCreate(regexp, "g").
features: [String.prototype.matchAll]
includes: [compareArray.js, compareIterator.js, regExpUtils.js]
---*/

var str = 'a';

assert.compareIterator(str.matchAll(undefined), [
  matchValidator([''], 0, str),
  matchValidator([''], 1, str)
]);

reportCompare(0, 0);