test262/test/language/expressions/async-arrow-function
Linus Groh a82f5382ff Remove 'AsyncArrowFunction' test
There is no such hidden constructor, it's the same as the hidden
AsyncFunction constructor. In other words:

```js
Object.getPrototypeOf(async () => {}).constructor ===
Object.getPrototypeOf(async function () {}).constructor
```

Also add a test to ensure that %AsyncFunction.prototype% is indeed the
prototype of an async arrow function.

Closes #4044.
2024-07-04 11:03:23 +02:00
..
forbidden-ext Generate tests 2020-10-14 14:01:01 -04:00
array-destructuring-param-strict-body.js Generate tests 2019-07-10 20:20:16 -04:00
arrow-returns-promise.js Add tests for async functions 2016-07-28 15:11:28 -07:00
async-lineterminator-identifier-throws.js Add info 2017-04-06 17:50:59 -04:00
await-as-binding-identifier-escaped.js Generate tests 2020-10-05 10:53:43 -04:00
await-as-binding-identifier.js Generate tests 2020-10-05 10:53:43 -04:00
await-as-identifier-reference-escaped.js Generate tests 2020-10-05 10:53:43 -04:00
await-as-identifier-reference.js Generate tests 2020-10-05 10:53:43 -04:00
await-as-label-identifier-escaped.js Generate tests 2020-10-05 10:53:43 -04:00
await-as-label-identifier.js Generate tests 2020-10-05 10:53:43 -04:00
await-as-param-ident-nested-arrow-parameter-position.js add async-functions feature to files which should have it 2022-10-17 11:21:23 +02:00
await-as-param-nested-arrow-body-position.js add async-functions feature to files which should have it 2022-10-17 11:21:23 +02:00
await-as-param-nested-arrow-parameter-position.js add async-functions feature to files which should have it 2022-10-17 11:21:23 +02:00
await-as-param-rest-nested-arrow-parameter-position.js add async-functions feature to files which should have it 2022-10-17 11:21:23 +02:00
dflt-params-abrupt.js Add async-functions feature to more files (#1830) 2018-10-05 10:37:21 -04:00
dflt-params-arg-val-not-undefined.js Add async-functions feature to more files (#1830) 2018-10-05 10:37:21 -04:00
dflt-params-arg-val-undefined.js Add async-functions feature to more files (#1830) 2018-10-05 10:37:21 -04:00
dflt-params-duplicates.js Rename to $DONOTEVALUATE per @leobalter's suggestion 2018-10-23 13:51:17 +02:00
dflt-params-ref-later.js Add async-functions feature to more files (#1830) 2018-10-05 10:37:21 -04:00
dflt-params-ref-prior.js Add async-functions feature to more files (#1830) 2018-10-05 10:37:21 -04:00
dflt-params-ref-self.js Add async-functions feature to more files (#1830) 2018-10-05 10:37:21 -04:00
dflt-params-rest.js Rename to $DONOTEVALUATE per @leobalter's suggestion 2018-10-23 13:51:17 +02:00
dflt-params-trailing-comma.js Add async-functions feature to more files (#1830) 2018-10-05 10:37:21 -04:00
early-errors-arrow-NSPL-with-USD.js Rename to $DONOTEVALUATE per @leobalter's suggestion 2018-10-23 13:51:17 +02:00
early-errors-arrow-arguments-in-formal-parameters.js Rename to $DONOTEVALUATE per @leobalter's suggestion 2018-10-23 13:51:17 +02:00
early-errors-arrow-await-in-formals-default.js Rename to $DONOTEVALUATE per @leobalter's suggestion 2018-10-23 13:51:17 +02:00
early-errors-arrow-await-in-formals.js Rename to $DONOTEVALUATE per @leobalter's suggestion 2018-10-23 13:51:17 +02:00
early-errors-arrow-body-contains-super-call.js Rename to $DONOTEVALUATE per @leobalter's suggestion 2018-10-23 13:51:17 +02:00
early-errors-arrow-body-contains-super-property.js Rename to $DONOTEVALUATE per @leobalter's suggestion 2018-10-23 13:51:17 +02:00
early-errors-arrow-duplicate-parameters.js add async-functions feature to files which should have it 2022-10-17 11:21:23 +02:00
early-errors-arrow-eval-in-formal-parameters.js Rename to $DONOTEVALUATE per @leobalter's suggestion 2018-10-23 13:51:17 +02:00
early-errors-arrow-formals-body-duplicate.js Rename to $DONOTEVALUATE per @leobalter's suggestion 2018-10-23 13:51:17 +02:00
early-errors-arrow-formals-contains-super-call.js Rename to $DONOTEVALUATE per @leobalter's suggestion 2018-10-23 13:51:17 +02:00
early-errors-arrow-formals-contains-super-property.js Rename to $DONOTEVALUATE per @leobalter's suggestion 2018-10-23 13:51:17 +02:00
early-errors-arrow-formals-lineterminator.js Rename to $DONOTEVALUATE per @leobalter's suggestion 2018-10-23 13:51:17 +02:00
escaped-async-line-terminator.js Update "info" field (#2941) 2021-01-28 16:03:01 -08:00
escaped-async.js Update "info" field (#2941) 2021-01-28 16:03:01 -08:00
eval-var-scope-syntax-err.js Generate tests 2020-01-08 09:30:47 -08:00
name.js Assign "name" property to all anonymous functions (#2299) 2019-08-15 10:58:40 -04:00
object-destructuring-param-strict-body.js Generate tests 2019-07-10 20:20:16 -04:00
params-trailing-comma-multiple.js Add async-functions feature to more files (#1830) 2018-10-05 10:37:21 -04:00
params-trailing-comma-single.js Add async-functions feature to more files (#1830) 2018-10-05 10:37:21 -04:00
prototype.js Remove 'AsyncArrowFunction' test 2024-07-04 11:03:23 +02:00
rest-param-strict-body.js Generate tests 2019-07-10 20:20:16 -04:00
rest-params-trailing-comma-early-error.js Rename to $DONOTEVALUATE per @leobalter's suggestion 2018-10-23 13:51:17 +02:00
try-reject-finally-reject.js Add tests for try/finally in async functions 2017-02-17 19:29:21 -05:00
try-reject-finally-return.js Add tests for try/finally in async functions 2017-02-17 19:29:21 -05:00
try-reject-finally-throw.js Add tests for try/finally in async functions 2017-02-17 19:29:21 -05:00
try-return-finally-reject.js Add tests for try/finally in async functions 2017-02-17 19:29:21 -05:00
try-return-finally-return.js Add tests for try/finally in async functions 2017-02-17 19:29:21 -05:00
try-return-finally-throw.js Add tests for try/finally in async functions 2017-02-17 19:29:21 -05:00
try-throw-finally-reject.js Add tests for try/finally in async functions 2017-02-17 19:29:21 -05:00
try-throw-finally-return.js Add tests for try/finally in async functions 2017-02-17 19:29:21 -05:00
try-throw-finally-throw.js Add tests for try/finally in async functions 2017-02-17 19:29:21 -05:00
unscopables-with-in-nested-fn.js Generate tests 2020-09-25 15:54:49 -04:00
unscopables-with.js Generate tests 2020-09-25 15:54:49 -04:00