test262/test/language/statements/class/cpn-class-decl-accessors-co...

97 lines
1.5 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-declaration-accessors.template
/*---
2020-09-25 19:32:40 +02:00
description: Computed property name from yield expression (ComputedPropertyName in ClassDeclaration)
2020-09-17 20:13:46 +02:00
esid: prod-ComputedPropertyName
features: [computed-property-names]
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
class C {
2020-09-25 19:32:40 +02:00
get [yield 9]() {
return 9;
2020-09-17 20:13:46 +02:00
}
2020-09-25 19:32:40 +02:00
set [yield 9](v) {
return 9;
2020-09-17 20:13:46 +02:00
}
2020-09-25 19:32:40 +02:00
static get [yield 9]() {
return 9;
2020-09-17 20:13:46 +02:00
}
2020-09-25 19:32:40 +02:00
static set [yield 9](v) {
return 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,
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
);
assert.sameValue(
2020-09-25 19:32:40 +02:00
C[yield 9] = 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,
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
);
assert.sameValue(
2020-09-25 19:32:40 +02:00
C[String(yield 9)] = 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) ;