mirror of
https://github.com/tc39/test262.git
synced 2025-07-13 09:04:36 +02:00
30 lines
685 B
Plaintext
30 lines
685 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(/*{ params }*/) {
|
|
/*{ body }*/
|
|
}
|
|
}
|
|
// Stores a reference `asyncFn` for case evaluation
|
|
let c = new C();
|
|
let asyncFn = c.method.bind(c);
|