// This file was procedurally generated from the following sources: // - src/class-fields/static-computed-names.case // - src/class-fields/productions/cls-expr-after-same-line-static-gen.template /*--- description: Static Computed property names (field definitions after a static generator in the same line) esid: prod-FieldDefinition features: [computed-property-names, generators, class, class-fields-public] flags: [generated] includes: [propertyHelper.js] info: | ClassElement: ... FieldDefinition ; static FieldDefinition ; FieldDefinition: ClassElementName Initializer_opt ClassElementName: PropertyName ---*/ var C = class { static *m() { return 42; } static ["a"] = 42; ["a"] = 39; } var c = new C(); assert.sameValue(C.m().next().value, 42); assert.sameValue(Object.hasOwnProperty.call(c, "m"), false); assert.sameValue(Object.hasOwnProperty.call(C.prototype, "m"), false); verifyProperty(C, "m", { enumerable: false, configurable: true, writable: 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 });