Remove erroneous ArrowFunction

This commit is contained in:
Rick Waldron 2020-10-07 16:42:50 -04:00
parent a6d38ffe9a
commit 04517c7ded
2 changed files with 0 additions and 26 deletions

View File

@ -5,14 +5,12 @@
description: |
Provides uniform access to built-in constructors that are not exposed to the global object.
defines:
- ArrowFunction
- AsyncArrowFunction
- AsyncFunction
- AsyncGeneratorFunction
- GeneratorFunction
---*/
var ArrowFunction = Object.getPrototypeOf(() => {}).constructor;
var AsyncArrowFunction = Object.getPrototypeOf(async () => {}).constructor;
var AsyncFunction = Object.getPrototypeOf(async function () {}).constructor;
var AsyncGeneratorFunction = Object.getPrototypeOf(async function* () {}).constructor;

View File

@ -1,24 +0,0 @@
// Copyright (C) 2020 Rick Waldron. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-ecmascript-standard-built-in-objects
description: >
The ArrowFunction constructor implements [[Construct]]
info: |
IsConstructor ( argument )
The abstract operation IsConstructor takes argument argument (an ECMAScript language value).
It determines if argument is a function object with a [[Construct]] internal method.
It performs the following steps when called:
If Type(argument) is not Object, return false.
If argument has a [[Construct]] internal method, return true.
Return false.
includes: [isConstructor.js, hidden-constructors.js]
features: [Reflect.construct]
---*/
assert.sameValue(isConstructor(ArrowFunction), true, 'isConstructor(ArrowFunction) must return true');
new ArrowFunction();