Add %AsyncFunction.prototype% test

This commit is contained in:
Alexey Shvayka 2020-08-19 16:24:57 +03:00 committed by Rick Waldron
parent 9411d7fccc
commit 34fb6c4374
1 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,28 @@
// 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");