mirror of https://github.com/tc39/test262.git
58 lines
1.3 KiB
JavaScript
58 lines
1.3 KiB
JavaScript
// This file was procedurally generated from the following sources:
|
|
// - src/class-fields/static-computed-names.case
|
|
// - src/class-fields/default/cls-expr-after-same-line-async-method.template
|
|
/*---
|
|
description: Static Computed property names (field definitions after an async method in the same line)
|
|
features: [computed-property-names, class-fields, async-functions]
|
|
flags: [generated, async]
|
|
includes: [propertyHelper.js]
|
|
info: |
|
|
ClassElement:
|
|
...
|
|
FieldDefinition ;
|
|
static FieldDefinition ;
|
|
|
|
FieldDefinition:
|
|
ClassElementName Initializer_opt
|
|
|
|
ClassElementName:
|
|
PropertyName
|
|
|
|
---*/
|
|
|
|
|
|
var C = class {
|
|
async m() { return 42; } static ["a"] = 42; ["a"] = 39;
|
|
}
|
|
|
|
var c = new C();
|
|
|
|
assert.sameValue(Object.hasOwnProperty.call(c, "m"), false);
|
|
assert.sameValue(c.m, C.prototype.m);
|
|
|
|
verifyProperty(C.prototype, "m", {
|
|
enumerable: false,
|
|
configurable: true,
|
|
writable: true,
|
|
}, {restore: true});
|
|
|
|
assert.sameValue(Object.hasOwnProperty.call(C.prototype, "a"), false);
|
|
|
|
verifyProperty(C, "a", {
|
|
value: 42,
|
|
enumerable: true,
|
|
writable: true,
|
|
configurable: true
|
|
});
|
|
|
|
verifyProperty(c, "a", {
|
|
value: 39,
|
|
enumerable: true,
|
|
writable: true,
|
|
configurable: true
|
|
});
|
|
|
|
c.m().then(function(v) {
|
|
assert.sameValue(v, 42);
|
|
}, $DONE).then($DONE, $DONE);
|