summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/GeneratorFunction/prototype/not-callable.js
blob: 2c7aac58ca9ad55f3b8a409c36efc0e1509cbbb6 (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) 2020 Alexey Shvayka. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
esid: sec-properties-of-the-generatorfunction-prototype-object
description: >
  %GeneratorFunction.prototype% is an ordinary non-callable object.
info: |
  Properties of the GeneratorFunction Prototype Object

  The GeneratorFunction prototype object:

  [...]
  * is an ordinary object.
  * is not a function object and does not have an [[ECMAScriptCode]] internal slot
    or any other of the internal slots listed in Table 28 or Table 74.
features: [generators]
---*/

var GeneratorFunctionPrototype = Object.getPrototypeOf(function* () {});

assert.sameValue(typeof GeneratorFunctionPrototype, "object");
assert.throws(TypeError, function() {
  GeneratorFunctionPrototype();
});

assert(!GeneratorFunctionPrototype.hasOwnProperty("length"), "length");
assert(!GeneratorFunctionPrototype.hasOwnProperty("name"), "name");

reportCompare(0, 0);