test262/harness/hidden-constructors.js
2020-10-06 12:01:34 -04:00

20 lines
749 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:
- 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;
var GeneratorFunction = Object.getPrototypeOf(function* () {}).constructor;