blob: 4e2aa7eb449332b59f18c487cb8b3f3e49d17f33 [file] [log] [blame] [edit]
// Copyright (C) 2018 Bloomberg LP. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
path: language/expressions/class/elements/async-gen-private-method-static/
name: Static async generator private method as a ClassExpression element
esid: prod-AsyncGeneratorMethod
info: |
ClassElement :
static PrivateMethodDefinition
MethodDefinition :
AsyncGeneratorMethod
Async Generator Function Definitions
AsyncGeneratorMethod :
async [no LineTerminator here] * # PropertyName ( UniqueFormalParameters ) { AsyncGeneratorBody }
features: [async-iteration, class-static-methods-private]
---*/
var C = class { static async *#gen() {
/*{ body }*/
}};