mirror of https://github.com/tc39/test262.git
Cover simple declaration of instance fields (#2620)
This commit is contained in:
parent
9bd8813674
commit
350ac0dab2
|
@ -0,0 +1,95 @@
|
||||||
|
// Copyright (C) 2019 Caio Lima (Igalia SL), Adrian Heine. All rights reserved.
|
||||||
|
// This code is governed by the BSD license found in the LICENSE file.
|
||||||
|
|
||||||
|
/*---
|
||||||
|
desc: Fields are defined
|
||||||
|
info: |
|
||||||
|
Updated Productions
|
||||||
|
|
||||||
|
ClassElement :
|
||||||
|
...
|
||||||
|
FieldDefinition ;
|
||||||
|
|
||||||
|
FieldDefinition :
|
||||||
|
ClassElementName Initializer_opt
|
||||||
|
|
||||||
|
ClassElementName :
|
||||||
|
PropertyName
|
||||||
|
|
||||||
|
PropertyName :
|
||||||
|
LiteralPropertyName
|
||||||
|
ComputedPropertyName
|
||||||
|
|
||||||
|
LiteralPropertyName :
|
||||||
|
IdentifierName
|
||||||
|
StringLiteral
|
||||||
|
NumericLiteral
|
||||||
|
|
||||||
|
ClassDefinitionEvaluation:
|
||||||
|
...
|
||||||
|
|
||||||
|
26. Let instanceFields be a new empty List.
|
||||||
|
28. For each ClassElement e in order from elements,
|
||||||
|
a. If IsStatic of e is false, then
|
||||||
|
i. Let field be the result of performing ClassElementEvaluation for e with arguments proto and false.
|
||||||
|
b. ...
|
||||||
|
c. ...
|
||||||
|
d. If field is not empty, append field to instanceFields.
|
||||||
|
|
||||||
|
...
|
||||||
|
|
||||||
|
30. Set F.[[Fields]] to instanceFields.
|
||||||
|
...
|
||||||
|
|
||||||
|
template: default
|
||||||
|
includes: [propertyHelper.js]
|
||||||
|
features: [class-fields-public]
|
||||||
|
---*/
|
||||||
|
|
||||||
|
//- setup
|
||||||
|
var computed = 'h';
|
||||||
|
//- elements
|
||||||
|
f = 'test262';
|
||||||
|
'g';
|
||||||
|
0 = 'bar';
|
||||||
|
[computed];
|
||||||
|
//- assertions
|
||||||
|
let c = new C();
|
||||||
|
|
||||||
|
assert.sameValue(C.f, undefined);
|
||||||
|
assert.sameValue(C.g, undefined);
|
||||||
|
assert.sameValue(C.h, undefined);
|
||||||
|
assert.sameValue(C[0], undefined);
|
||||||
|
|
||||||
|
assert.sameValue(Object.hasOwnProperty.call(C, 'f'), false);
|
||||||
|
assert.sameValue(Object.hasOwnProperty.call(C, 'g'), false);
|
||||||
|
assert.sameValue(Object.hasOwnProperty.call(C, 'h'), false);
|
||||||
|
assert.sameValue(Object.hasOwnProperty.call(C, 0), false);
|
||||||
|
|
||||||
|
verifyProperty(c, 'f', {
|
||||||
|
value: 'test262',
|
||||||
|
enumerable: true,
|
||||||
|
writable: true,
|
||||||
|
configurable: true
|
||||||
|
});
|
||||||
|
|
||||||
|
verifyProperty(c, 'g', {
|
||||||
|
value: undefined,
|
||||||
|
enumerable: true,
|
||||||
|
writable: true,
|
||||||
|
configurable: true
|
||||||
|
});
|
||||||
|
|
||||||
|
verifyProperty(c, 0, {
|
||||||
|
value: 'bar',
|
||||||
|
enumerable: true,
|
||||||
|
writable: true,
|
||||||
|
configurable: true
|
||||||
|
});
|
||||||
|
|
||||||
|
verifyProperty(c, 'h', {
|
||||||
|
value: undefined,
|
||||||
|
enumerable: true,
|
||||||
|
writable: true,
|
||||||
|
configurable: true
|
||||||
|
});
|
|
@ -0,0 +1,97 @@
|
||||||
|
// This file was procedurally generated from the following sources:
|
||||||
|
// - src/class-elements/field-declaration.case
|
||||||
|
// - src/class-elements/default/cls-expr.template
|
||||||
|
/*---
|
||||||
|
description: Fields are defined (field definitions in a class expression)
|
||||||
|
esid: prod-FieldDefinition
|
||||||
|
features: [class-fields-public, class]
|
||||||
|
flags: [generated]
|
||||||
|
includes: [propertyHelper.js]
|
||||||
|
info: |
|
||||||
|
Updated Productions
|
||||||
|
|
||||||
|
ClassElement :
|
||||||
|
...
|
||||||
|
FieldDefinition ;
|
||||||
|
|
||||||
|
FieldDefinition :
|
||||||
|
ClassElementName Initializer_opt
|
||||||
|
|
||||||
|
ClassElementName :
|
||||||
|
PropertyName
|
||||||
|
|
||||||
|
PropertyName :
|
||||||
|
LiteralPropertyName
|
||||||
|
ComputedPropertyName
|
||||||
|
|
||||||
|
LiteralPropertyName :
|
||||||
|
IdentifierName
|
||||||
|
StringLiteral
|
||||||
|
NumericLiteral
|
||||||
|
|
||||||
|
ClassDefinitionEvaluation:
|
||||||
|
...
|
||||||
|
|
||||||
|
26. Let instanceFields be a new empty List.
|
||||||
|
28. For each ClassElement e in order from elements,
|
||||||
|
a. If IsStatic of e is false, then
|
||||||
|
i. Let field be the result of performing ClassElementEvaluation for e with arguments proto and false.
|
||||||
|
b. ...
|
||||||
|
c. ...
|
||||||
|
d. If field is not empty, append field to instanceFields.
|
||||||
|
|
||||||
|
...
|
||||||
|
|
||||||
|
30. Set F.[[Fields]] to instanceFields.
|
||||||
|
...
|
||||||
|
|
||||||
|
---*/
|
||||||
|
var computed = 'h';
|
||||||
|
|
||||||
|
|
||||||
|
var C = class {
|
||||||
|
f = 'test262';
|
||||||
|
'g';
|
||||||
|
0 = 'bar';
|
||||||
|
[computed];
|
||||||
|
}
|
||||||
|
|
||||||
|
let c = new C();
|
||||||
|
|
||||||
|
assert.sameValue(C.f, undefined);
|
||||||
|
assert.sameValue(C.g, undefined);
|
||||||
|
assert.sameValue(C.h, undefined);
|
||||||
|
assert.sameValue(C[0], undefined);
|
||||||
|
|
||||||
|
assert.sameValue(Object.hasOwnProperty.call(C, 'f'), false);
|
||||||
|
assert.sameValue(Object.hasOwnProperty.call(C, 'g'), false);
|
||||||
|
assert.sameValue(Object.hasOwnProperty.call(C, 'h'), false);
|
||||||
|
assert.sameValue(Object.hasOwnProperty.call(C, 0), false);
|
||||||
|
|
||||||
|
verifyProperty(c, 'f', {
|
||||||
|
value: 'test262',
|
||||||
|
enumerable: true,
|
||||||
|
writable: true,
|
||||||
|
configurable: true
|
||||||
|
});
|
||||||
|
|
||||||
|
verifyProperty(c, 'g', {
|
||||||
|
value: undefined,
|
||||||
|
enumerable: true,
|
||||||
|
writable: true,
|
||||||
|
configurable: true
|
||||||
|
});
|
||||||
|
|
||||||
|
verifyProperty(c, 0, {
|
||||||
|
value: 'bar',
|
||||||
|
enumerable: true,
|
||||||
|
writable: true,
|
||||||
|
configurable: true
|
||||||
|
});
|
||||||
|
|
||||||
|
verifyProperty(c, 'h', {
|
||||||
|
value: undefined,
|
||||||
|
enumerable: true,
|
||||||
|
writable: true,
|
||||||
|
configurable: true
|
||||||
|
});
|
|
@ -0,0 +1,97 @@
|
||||||
|
// This file was procedurally generated from the following sources:
|
||||||
|
// - src/class-elements/field-declaration.case
|
||||||
|
// - src/class-elements/default/cls-decl.template
|
||||||
|
/*---
|
||||||
|
description: Fields are defined (field definitions in a class declaration)
|
||||||
|
esid: prod-FieldDefinition
|
||||||
|
features: [class-fields-public, class]
|
||||||
|
flags: [generated]
|
||||||
|
includes: [propertyHelper.js]
|
||||||
|
info: |
|
||||||
|
Updated Productions
|
||||||
|
|
||||||
|
ClassElement :
|
||||||
|
...
|
||||||
|
FieldDefinition ;
|
||||||
|
|
||||||
|
FieldDefinition :
|
||||||
|
ClassElementName Initializer_opt
|
||||||
|
|
||||||
|
ClassElementName :
|
||||||
|
PropertyName
|
||||||
|
|
||||||
|
PropertyName :
|
||||||
|
LiteralPropertyName
|
||||||
|
ComputedPropertyName
|
||||||
|
|
||||||
|
LiteralPropertyName :
|
||||||
|
IdentifierName
|
||||||
|
StringLiteral
|
||||||
|
NumericLiteral
|
||||||
|
|
||||||
|
ClassDefinitionEvaluation:
|
||||||
|
...
|
||||||
|
|
||||||
|
26. Let instanceFields be a new empty List.
|
||||||
|
28. For each ClassElement e in order from elements,
|
||||||
|
a. If IsStatic of e is false, then
|
||||||
|
i. Let field be the result of performing ClassElementEvaluation for e with arguments proto and false.
|
||||||
|
b. ...
|
||||||
|
c. ...
|
||||||
|
d. If field is not empty, append field to instanceFields.
|
||||||
|
|
||||||
|
...
|
||||||
|
|
||||||
|
30. Set F.[[Fields]] to instanceFields.
|
||||||
|
...
|
||||||
|
|
||||||
|
---*/
|
||||||
|
var computed = 'h';
|
||||||
|
|
||||||
|
|
||||||
|
class C {
|
||||||
|
f = 'test262';
|
||||||
|
'g';
|
||||||
|
0 = 'bar';
|
||||||
|
[computed];
|
||||||
|
}
|
||||||
|
|
||||||
|
let c = new C();
|
||||||
|
|
||||||
|
assert.sameValue(C.f, undefined);
|
||||||
|
assert.sameValue(C.g, undefined);
|
||||||
|
assert.sameValue(C.h, undefined);
|
||||||
|
assert.sameValue(C[0], undefined);
|
||||||
|
|
||||||
|
assert.sameValue(Object.hasOwnProperty.call(C, 'f'), false);
|
||||||
|
assert.sameValue(Object.hasOwnProperty.call(C, 'g'), false);
|
||||||
|
assert.sameValue(Object.hasOwnProperty.call(C, 'h'), false);
|
||||||
|
assert.sameValue(Object.hasOwnProperty.call(C, 0), false);
|
||||||
|
|
||||||
|
verifyProperty(c, 'f', {
|
||||||
|
value: 'test262',
|
||||||
|
enumerable: true,
|
||||||
|
writable: true,
|
||||||
|
configurable: true
|
||||||
|
});
|
||||||
|
|
||||||
|
verifyProperty(c, 'g', {
|
||||||
|
value: undefined,
|
||||||
|
enumerable: true,
|
||||||
|
writable: true,
|
||||||
|
configurable: true
|
||||||
|
});
|
||||||
|
|
||||||
|
verifyProperty(c, 0, {
|
||||||
|
value: 'bar',
|
||||||
|
enumerable: true,
|
||||||
|
writable: true,
|
||||||
|
configurable: true
|
||||||
|
});
|
||||||
|
|
||||||
|
verifyProperty(c, 'h', {
|
||||||
|
value: undefined,
|
||||||
|
enumerable: true,
|
||||||
|
writable: true,
|
||||||
|
configurable: true
|
||||||
|
});
|
Loading…
Reference in New Issue