mirror of https://github.com/tc39/test262.git
18 lines
666 B
JavaScript
18 lines
666 B
JavaScript
// Copyright (C) 2020 Rick Waldron. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
|
description: |
|
|
Provides uniform access to built-in constructors that are not exposed to the global object.
|
|
defines:
|
|
- AsyncArrowFunction
|
|
- AsyncFunction
|
|
- AsyncGeneratorFunction
|
|
- GeneratorFunction
|
|
---*/
|
|
|
|
var AsyncArrowFunction = Object.getPrototypeOf(async () => {}).constructor;
|
|
var AsyncFunction = Object.getPrototypeOf(async function () {}).constructor;
|
|
var AsyncGeneratorFunction = Object.getPrototypeOf(async function* () {}).constructor;
|
|
var GeneratorFunction = Object.getPrototypeOf(function* () {}).constructor;
|