mirror of https://github.com/tc39/test262.git
update pending esids in AsyncFunction tests
This commit is contained in:
parent
8b3dddc570
commit
af8ec67363
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
/*---
|
/*---
|
||||||
author: Brian Terlson <brian.terlson@microsoft.com>
|
author: Brian Terlson <brian.terlson@microsoft.com>
|
||||||
esid: pending
|
esid: sec-async-function-constructor
|
||||||
description: >
|
description: >
|
||||||
%AsyncFunction% creates functions with or without new and handles arguments
|
%AsyncFunction% creates functions with or without new and handles arguments
|
||||||
similarly to functions.
|
similarly to functions.
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
/*---
|
/*---
|
||||||
author: Brian Terlson <brian.terlson@microsoft.com>
|
author: Brian Terlson <brian.terlson@microsoft.com>
|
||||||
esid: pending
|
esid: sec-async-function-constructor
|
||||||
description: >
|
description: >
|
||||||
%AsyncFunction% is a subclass of Function
|
%AsyncFunction% is a subclass of Function
|
||||||
---*/
|
---*/
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
/*---
|
/*---
|
||||||
author: Brian Terlson <brian.terlson@microsoft.com>
|
author: Brian Terlson <brian.terlson@microsoft.com>
|
||||||
esid: pending
|
esid: sec-async-function-constructor-length
|
||||||
description: >
|
description: >
|
||||||
%AsyncFunction% has a length of 1 with writable false, enumerable false, configurable true.
|
%AsyncFunction% has a length of 1 with writable false, enumerable false, configurable true.
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
/*---
|
/*---
|
||||||
author: Brian Terlson <brian.terlson@microsoft.com>
|
author: Brian Terlson <brian.terlson@microsoft.com>
|
||||||
esid: pending
|
esid: sec-async-function-constructor-properties
|
||||||
description: >
|
description: >
|
||||||
%AsyncFunction% has a name of "AsyncFunction".
|
%AsyncFunction% has a name of "AsyncFunction".
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
/*---
|
/*---
|
||||||
author: Brian Terlson <brian.terlson@microsoft.com>
|
author: Brian Terlson <brian.terlson@microsoft.com>
|
||||||
esid: pending
|
esid: sec-async-function-constructor-prototype
|
||||||
description: AsyncFunction has a prototype property with writable false, enumerable false, configurable false.
|
description: AsyncFunction has a prototype property with writable false, enumerable false, configurable false.
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
---*/
|
---*/
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
/*---
|
/*---
|
||||||
author: Brian Terlson <brian.terlson@microsoft.com>
|
author: Brian Terlson <brian.terlson@microsoft.com>
|
||||||
esid: pending
|
esid: sec-async-function-objects
|
||||||
description: >
|
description: >
|
||||||
%AsyncFunction% exists and is a function
|
%AsyncFunction% exists and is a function
|
||||||
---*/
|
---*/
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
/*---
|
/*---
|
||||||
author: Brian Terlson <brian.terlson@microsoft.com>
|
author: Brian Terlson <brian.terlson@microsoft.com>
|
||||||
esid: pending
|
esid: sec-sync-function-prototype-properties
|
||||||
description: >
|
description: >
|
||||||
%AsyncFunctionPrototype% has a [[Extensible]] of true
|
%AsyncFunctionPrototype% has a [[Extensible]] of true
|
||||||
---*/
|
---*/
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
/*---
|
/*---
|
||||||
author: Brian Terlson <brian.terlson@microsoft.com>
|
author: Brian Terlson <brian.terlson@microsoft.com>
|
||||||
esid: pending
|
esid: sec-sync-function-prototype-properties
|
||||||
description: AsyncFunction.prototype has a [[prototype]] of Function.prototype
|
description: AsyncFunction.prototype has a [[prototype]] of Function.prototype
|
||||||
---*/
|
---*/
|
||||||
var AsyncFunction = async function foo() { }.constructor;
|
var AsyncFunction = async function foo() { }.constructor;
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
/*---
|
/*---
|
||||||
author: Brian Terlson <brian.terlson@microsoft.com>
|
author: Brian Terlson <brian.terlson@microsoft.com>
|
||||||
esid: pending
|
esid: sec-async-function-prototype-properties-toStringTag
|
||||||
description: >
|
description: >
|
||||||
%AsyncFunctionPrototype% has a Symbol.toStringTag property of "AsyncFunction"
|
%AsyncFunctionPrototype% has a Symbol.toStringTag property of "AsyncFunction"
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
/*---
|
/*---
|
||||||
author: Brian Terlson <brian.terlson@microsoft.com>
|
author: Brian Terlson <brian.terlson@microsoft.com>
|
||||||
esid: pending
|
esid: sec-async-function-instances
|
||||||
description: >
|
description: >
|
||||||
Async function instances are not constructors and do not have a
|
Async function instances are not constructors and do not have a
|
||||||
[[Construct]] slot.
|
[[Construct]] slot.
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
/*---
|
/*---
|
||||||
author: Brian Terlson <brian.terlson@microsoft.com>
|
author: Brian Terlson <brian.terlson@microsoft.com>
|
||||||
esid: pending
|
esid: sec-async-function-instances-name
|
||||||
description: Async function declarations have a name property
|
description: Async function declarations have a name property
|
||||||
includes: [propertyHelper.js]
|
includes: [propertyHelper.js]
|
||||||
---*/
|
---*/
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
/*---
|
/*---
|
||||||
author: Brian Terlson <brian.terlson@microsoft.com>
|
author: Brian Terlson <brian.terlson@microsoft.com>
|
||||||
esid: pending
|
esid: sec-async-function-instances-length
|
||||||
description: >
|
description: >
|
||||||
Async functions have a length property that is the number of expected
|
Async functions have a length property that is the number of expected
|
||||||
arguments.
|
arguments.
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
/*---
|
/*---
|
||||||
author: Brian Terlson <brian.terlson@microsoft.com>
|
author: Brian Terlson <brian.terlson@microsoft.com>
|
||||||
esid: pending
|
esid: sec-async-function-instances
|
||||||
description: >
|
description: >
|
||||||
Async function instances do not have a prototype property.
|
Async function instances do not have a prototype property.
|
||||||
---*/
|
---*/
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
/*---
|
/*---
|
||||||
author: Brian Terlson <brian.terlson@microsoft.com>
|
author: Brian Terlson <brian.terlson@microsoft.com>
|
||||||
esid: pending
|
esid: sec-async-function-constructor-properties
|
||||||
description: >
|
description: >
|
||||||
%AsyncFunction% is not exposed as a global
|
%AsyncFunction% is not exposed as a global
|
||||||
---*/
|
---*/
|
||||||
|
|
Loading…
Reference in New Issue