blob: e2efb411def8c0df32a72b0c0c01fc5644ab4a7b [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/statements/class/elements/async-gen-private-method-static/
name: Static async generator method as a ClassDeclaration element
esid: prod-AsyncGeneratorPrivateMethod
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 callCount = 0;
class C {
static async *#gen() {
callCount += 1;
/*{ body }*/
}
static get gen() { return this.#gen; }
}
// Test the private fields do not appear as properties before set to value
assert(
!Object.prototype.hasOwnProperty.call(C.prototype, "#gen"),
"#gen does not appear as an own property on C prototype"
);
assert(
!Object.prototype.hasOwnProperty.call(C, "#gen"),
"#gen does not appear as an own property on C constructor"
);
var iter = C.gen();
/*{ assertions }*/
assert.sameValue(callCount, 1);
// Test the private fields do not appear as properties after set to value
assert(
!Object.prototype.hasOwnProperty.call(C.prototype, "#gen"),
"#gen does not appear as an own property on C prototype"
);
assert(
!Object.prototype.hasOwnProperty.call(C, "#gen"),
"#gen does not appear as an own property on C constructor"
);