rename generation test names to be more descriptive
This commit is contained in:
46
test/fixtures/generation/harmony-edgecase/class-declaration/expected.js
vendored
Normal file
46
test/fixtures/generation/harmony-edgecase/class-declaration/expected.js
vendored
Normal file
@@ -0,0 +1,46 @@
|
||||
class Test {
|
||||
}
|
||||
class Derived extends Super {
|
||||
}
|
||||
class Derived2 extends Super() {
|
||||
}
|
||||
class StaticMethods {
|
||||
static n1() {
|
||||
}
|
||||
static get get1() {
|
||||
}
|
||||
static set set1(value) {
|
||||
}
|
||||
static *gen1() {
|
||||
}
|
||||
}
|
||||
class Methods {
|
||||
n2() {
|
||||
}
|
||||
get get2() {
|
||||
}
|
||||
set set2(value) {
|
||||
}
|
||||
*gen1() {
|
||||
}
|
||||
}
|
||||
class ComputedStaticMethods {
|
||||
static n1() {
|
||||
}
|
||||
static get get1() {
|
||||
}
|
||||
static set set1(value) {
|
||||
}
|
||||
static *gen1() {
|
||||
}
|
||||
}
|
||||
class ComputedMethods {
|
||||
n2() {
|
||||
}
|
||||
get get2() {
|
||||
}
|
||||
set set2(value) {
|
||||
}
|
||||
*gen1() {
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user