summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/String/prototype/matchAll/regexp-is-null.js
blob: 0244014e4ce64c9879fa6e390e19c2f5eb45b2ea (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
// 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. Let S be ? ToString(O).
    4. Let rx be ? RegExpCreate(R, "g").
    5. Return ? Invoke(rx, @@matchAll, « S »).
features: [String.prototype.matchAll]
includes: [compareArray.js, compareIterator.js, regExpUtils.js]
---*/

var str = '-null-';

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

reportCompare(0, 0);