mirror of
https://github.com/tc39/test262.git
synced 2025-06-17 04:20:31 +02:00
25 lines
565 B
Plaintext
25 lines
565 B
Plaintext
// Copyright (C) 2017 André Bargull. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
|
path: language/statements/class/async-method-
|
|
name: Async method as a ClassDeclaration element
|
|
esid: prod-AsyncMethod
|
|
info: |
|
|
ClassElement :
|
|
MethodDefinition
|
|
|
|
MethodDefinition :
|
|
AsyncMethod
|
|
|
|
Async Function Definitions
|
|
|
|
AsyncMethod :
|
|
async [no LineTerminator here] PropertyName ( UniqueFormalParameters ) { AsyncFunctionBody }
|
|
features: [async-functions]
|
|
---*/
|
|
|
|
class C { async method() {
|
|
/*{ body }*/
|
|
}}
|