mirror of
https://github.com/tc39/test262.git
synced 2025-05-30 11:40:30 +02:00
118 lines
2.5 KiB
JavaScript
118 lines
2.5 KiB
JavaScript
// This file was procedurally generated from the following sources:
|
|
// - src/class-elements/literal-names.case
|
|
// - src/class-elements/productions/cls-expr-multiple-stacked-definitions.template
|
|
/*---
|
|
description: Literal property names (multiple stacked fields definitions through ASI)
|
|
esid: prod-FieldDefinition
|
|
features: [class-fields-public, class]
|
|
flags: [generated]
|
|
includes: [propertyHelper.js]
|
|
info: |
|
|
ClassElement:
|
|
...
|
|
FieldDefinition ;
|
|
|
|
FieldDefinition:
|
|
ClassElementName Initializer_opt
|
|
|
|
ClassElementName:
|
|
PropertyName
|
|
|
|
---*/
|
|
const fn = function() {}
|
|
|
|
|
|
|
|
var C = class {
|
|
a; b = 42;
|
|
c = fn
|
|
foo = "foobar"
|
|
bar = "barbaz";
|
|
|
|
}
|
|
|
|
var c = new C();
|
|
|
|
assert.sameValue(c.foo, "foobar");
|
|
assert(
|
|
!Object.prototype.hasOwnProperty.call(C, "foo"),
|
|
"foo doesn't appear as an own property on the C constructor"
|
|
);
|
|
assert(
|
|
!Object.prototype.hasOwnProperty.call(C.prototype, "foo"),
|
|
"foo doesn't appear as an own property on the C prototype"
|
|
);
|
|
|
|
verifyProperty(c, "foo", {
|
|
value: "foobar",
|
|
enumerable: true,
|
|
configurable: true,
|
|
writable: true,
|
|
});
|
|
|
|
assert.sameValue(c.bar, "barbaz");
|
|
assert(
|
|
!Object.prototype.hasOwnProperty.call(C, "bar"),
|
|
"bar doesn't appear as an own property on the C constructor"
|
|
);
|
|
assert(
|
|
!Object.prototype.hasOwnProperty.call(C.prototype, "bar"),
|
|
"bar doesn't appear as an own property on the C prototype"
|
|
);
|
|
|
|
verifyProperty(c, "bar", {
|
|
value: "barbaz",
|
|
enumerable: true,
|
|
configurable: true,
|
|
writable: true,
|
|
});
|
|
|
|
assert(
|
|
!Object.prototype.hasOwnProperty.call(C.prototype, "a"),
|
|
"a doesn't appear as an own property on C prototype"
|
|
);
|
|
assert(
|
|
!Object.prototype.hasOwnProperty.call(C, "a"),
|
|
"a doesn't appear as an own property on C constructor"
|
|
);
|
|
|
|
verifyProperty(c, "a", {
|
|
value: undefined,
|
|
enumerable: true,
|
|
writable: true,
|
|
configurable: true
|
|
});
|
|
|
|
assert(
|
|
!Object.prototype.hasOwnProperty.call(C.prototype, "b"),
|
|
"b doesn't appear as an own property on C prototype"
|
|
);
|
|
assert(
|
|
!Object.prototype.hasOwnProperty.call(C, "b"),
|
|
"b doesn't appear as an own property on C constructor"
|
|
);
|
|
|
|
verifyProperty(c, "b", {
|
|
value: 42,
|
|
enumerable: true,
|
|
writable: true,
|
|
configurable: true
|
|
});
|
|
|
|
assert(
|
|
!Object.prototype.hasOwnProperty.call(C.prototype, "c"),
|
|
"c doesn't appear as an own property on C prototype"
|
|
);
|
|
assert(
|
|
!Object.prototype.hasOwnProperty.call(C, "c"),
|
|
"c doesn't appear as an own property on C constructor"
|
|
);
|
|
|
|
verifyProperty(c, "c", {
|
|
value: fn,
|
|
enumerable: true,
|
|
writable: true,
|
|
configurable: true
|
|
});
|
|
|