summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/AsyncFunction/AsyncFunctionPrototype-is-not-callable.js
blob: f3db773ba17ff2583e30b2126c97a82478ea6ff9 (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-async-function-prototype-properties
description: >
  %AsyncFunction.prototype% is an ordinary non-callable object.
info: |
  Properties of the AsyncFunction Prototype Object

  The AsyncFunction 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.
features: [async-functions]
---*/

var AsyncFunctionPrototype = Object.getPrototypeOf(async function() {});

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

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

reportCompare(0, 0);