mirror of
https://github.com/tc39/test262.git
synced 2025-11-06 06:49:43 +01:00
35 lines
737 B
Plaintext
35 lines
737 B
Plaintext
// Copyright (C) 2017 the V8 project authors. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
|
path: language/statements/class/async-gen-method-
|
|
name: Async Generator method as a ClassDeclaration element
|
|
esid: prod-AsyncGeneratorMethod
|
|
info: |
|
|
ClassElement :
|
|
MethodDefinition
|
|
|
|
MethodDefinition :
|
|
AsyncGeneratorMethod
|
|
|
|
Async Generator Function Definitions
|
|
|
|
AsyncGeneratorMethod :
|
|
async [no LineTerminator here] * PropertyName ( UniqueFormalParameters ) { AsyncGeneratorBody }
|
|
---*/
|
|
|
|
var callCount = 0;
|
|
|
|
class C { async *gen() {
|
|
callCount += 1;
|
|
/*{ body }*/
|
|
}}
|
|
|
|
var gen = C.prototype.gen;
|
|
|
|
var iter = gen();
|
|
|
|
/*{ assertions }*/
|
|
|
|
assert.sameValue(callCount, 1);
|