2017-08-21 22:59:36 +02:00
|
|
|
// This file was procedurally generated from the following sources:
|
2018-09-05 22:12:46 +02:00
|
|
|
// - src/class-elements/computed-symbol-names.case
|
|
|
|
// - src/class-elements/productions/cls-expr-same-line-generator.template
|
2017-08-21 22:59:36 +02:00
|
|
|
/*---
|
|
|
|
description: Computed property symbol names (field definitions followed by a generator method in the same line)
|
2017-10-17 23:47:52 +02:00
|
|
|
esid: prod-FieldDefinition
|
2018-08-31 21:22:43 +02:00
|
|
|
features: [class-fields-public, Symbol, computed-property-names, class, generators]
|
2017-08-21 22:59:36 +02:00
|
|
|
flags: [generated]
|
|
|
|
includes: [propertyHelper.js]
|
|
|
|
info: |
|
|
|
|
ClassElement:
|
|
|
|
...
|
|
|
|
FieldDefinition ;
|
|
|
|
|
|
|
|
FieldDefinition:
|
|
|
|
ClassElementName Initializer_opt
|
|
|
|
|
|
|
|
ClassElementName:
|
|
|
|
PropertyName
|
|
|
|
|
|
|
|
---*/
|
|
|
|
var x = Symbol();
|
|
|
|
var y = Symbol();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var C = class {
|
|
|
|
[x]; [y] = 42; *m() { return 42; }
|
2018-08-01 20:20:57 +02:00
|
|
|
|
2017-08-21 22:59:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
var c = new C();
|
|
|
|
|
|
|
|
assert.sameValue(c.m().next().value, 42);
|
|
|
|
assert.sameValue(c.m, C.prototype.m);
|
2022-11-24 18:24:46 +01:00
|
|
|
assert(
|
|
|
|
!Object.prototype.hasOwnProperty.call(c, "m"),
|
|
|
|
"m doesn't appear as an own property on the C instance"
|
|
|
|
);
|
2017-08-21 22:59:36 +02:00
|
|
|
|
|
|
|
verifyProperty(C.prototype, "m", {
|
|
|
|
enumerable: false,
|
|
|
|
configurable: true,
|
|
|
|
writable: true,
|
|
|
|
});
|
|
|
|
|
2022-11-24 18:24:46 +01:00
|
|
|
assert(
|
|
|
|
!Object.prototype.hasOwnProperty.call(C.prototype, x),
|
|
|
|
"Symbol x doesn't appear as an own property on C prototype"
|
|
|
|
);
|
|
|
|
assert(
|
|
|
|
!Object.prototype.hasOwnProperty.call(C, x),
|
|
|
|
"Symbol x doesn't appear as an own property on C constructor"
|
|
|
|
);
|
2017-08-21 22:59:36 +02:00
|
|
|
|
|
|
|
verifyProperty(c, x, {
|
|
|
|
value: undefined,
|
|
|
|
enumerable: true,
|
|
|
|
writable: true,
|
|
|
|
configurable: true
|
|
|
|
});
|
|
|
|
|
2022-11-24 18:24:46 +01:00
|
|
|
assert(
|
|
|
|
!Object.prototype.hasOwnProperty.call(C.prototype, y),
|
|
|
|
"Symbol y doesn't appear as an own property on C prototype"
|
|
|
|
);
|
|
|
|
assert(
|
|
|
|
!Object.prototype.hasOwnProperty.call(C, y),
|
|
|
|
"Symbol y doesn't appear as an own property on C constructor"
|
|
|
|
);
|
2017-08-21 22:59:36 +02:00
|
|
|
|
|
|
|
verifyProperty(c, y, {
|
|
|
|
value: 42,
|
|
|
|
enumerable: true,
|
|
|
|
writable: true,
|
|
|
|
configurable: true
|
|
|
|
});
|
|
|
|
|
2022-11-24 18:24:46 +01:00
|
|
|
assert(
|
|
|
|
!Object.prototype.hasOwnProperty.call(C.prototype, "x"),
|
|
|
|
"x doesn't appear as an own property on C prototype"
|
|
|
|
);
|
|
|
|
assert(
|
|
|
|
!Object.prototype.hasOwnProperty.call(C, "x"),
|
|
|
|
"x doesn't appear as an own property on C constructor"
|
|
|
|
);
|
|
|
|
assert(
|
|
|
|
!Object.prototype.hasOwnProperty.call(c, "x"),
|
|
|
|
"x doesn't appear as an own property on C instance"
|
|
|
|
);
|
2017-08-21 22:59:36 +02:00
|
|
|
|
2022-11-24 18:24:46 +01:00
|
|
|
assert(
|
|
|
|
!Object.prototype.hasOwnProperty.call(C.prototype, "y"),
|
|
|
|
"y doesn't appear as an own property on C prototype"
|
|
|
|
);
|
|
|
|
assert(
|
|
|
|
!Object.prototype.hasOwnProperty.call(C, "y"),
|
|
|
|
"y doesn't appear as an own property on C constructor"
|
|
|
|
);
|
|
|
|
assert(
|
|
|
|
!Object.prototype.hasOwnProperty.call(c, "y"),
|
|
|
|
"y doesn't appear as an own property on C instance"
|
|
|
|
);
|