Skip to content

Commit

Permalink
Remove erroneous ArrowFunction
Browse files Browse the repository at this point in the history
  • Loading branch information
rwaldron committed Oct 7, 2020
1 parent a6d38ff commit 04517c7
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 26 deletions.
2 changes: 0 additions & 2 deletions harness/hidden-constructors.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
24 changes: 0 additions & 24 deletions test/built-ins/ArrowFunction/is-a-constructor.js

This file was deleted.

0 comments on commit 04517c7

Please sign in to comment.