summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/RegExpStringIteratorPrototype/next/next-missing-internal-slots.js
blob: a3c9deba9e01729f22d67a3e024e8cbe6decb18b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright (C) 2018 Peter Wong. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: pending
description: Throws TypeError when `this` does not have all internal slots
info: |
  %RegExpStringIteratorPrototype%.next ( )
    1. Let O be the this value.
    2. If Type(O) is not Object, throw a TypeError exception.
    3. If O does not have all of the internal slots of a RegExp String Iterator
       Object Instance (see PropertiesOfRegExpStringIteratorInstances), throw a
       TypeError.
features: [Symbol.matchAll]
---*/

var iterator = /./[Symbol.matchAll]('');
var object = Object.create(iterator);

assert.throws(TypeError, function() {
  object.next();
});

reportCompare(0, 0);