test262/test/language/expressions/class/cpn-class-expr-fields-compu...

67 lines
1.2 KiB
JavaScript
Raw Normal View History

2020-09-17 20:13:46 +02:00
// This file was procedurally generated from the following sources:
// - src/computed-property-names/computed-property-name-from-yield-expression.case
// - src/computed-property-names/evaluation/class-expression-fields.template
/*---
2020-09-25 19:32:40 +02:00
description: Computed property name from yield expression (ComputedPropertyName in ClassExpression)
2020-09-17 20:13:46 +02:00
esid: prod-ComputedPropertyName
2020-09-30 15:51:31 +02:00
features: [computed-property-names, class-fields-public, class-static-fields-public]
2020-09-17 20:13:46 +02:00
flags: [generated]
info: |
ClassExpression:
classBindingIdentifier opt ClassTail
ClassTail:
ClassHeritage opt { ClassBody opt }
ClassBody:
ClassElementList
ClassElementList:
ClassElement
ClassElement:
MethodDefinition
MethodDefinition:
PropertyName ...
get PropertyName ...
set PropertyName ...
PropertyName:
ComputedPropertyName
ComputedPropertyName:
[ AssignmentExpression ]
---*/
2020-09-25 19:32:40 +02:00
function * g() {
2020-09-17 20:13:46 +02:00
let C = class {
2020-09-25 19:32:40 +02:00
[yield 9] = 9;
2020-09-17 20:13:46 +02:00
2020-09-25 19:32:40 +02:00
static [yield 9] = 9;
2020-09-17 20:13:46 +02:00
};
let c = new C();
assert.sameValue(
2020-09-25 19:32:40 +02:00
c[yield 9],
9
2020-09-17 20:13:46 +02:00
);
assert.sameValue(
2020-09-25 19:32:40 +02:00
C[yield 9],
9
2020-09-17 20:13:46 +02:00
);
2020-09-25 19:12:40 +02:00
assert.sameValue(
2020-09-25 19:32:40 +02:00
c[String(yield 9)],
9
2020-09-25 19:12:40 +02:00
);
assert.sameValue(
2020-09-25 19:32:40 +02:00
C[String(yield 9)],
9
2020-09-25 19:12:40 +02:00
);
2020-09-25 19:32:40 +02:00
}
var iter = g();
while (iter.next().done === false) ;