mirror of
https://github.com/swc-project/swc.git
synced 2024-11-28 02:29:04 +03:00
55 lines
1.2 KiB
TypeScript
55 lines
1.2 KiB
TypeScript
// @strict: true
|
|
// @target: esNext,es2020
|
|
// @useDefineForClassFields: false
|
|
|
|
class TestWithStatics {
|
|
#prop = 0
|
|
static dd = new TestWithStatics().#prop; // OK
|
|
static ["X_ z_ zz"] = class Inner {
|
|
#foo = 10
|
|
m() {
|
|
new TestWithStatics().#prop // OK
|
|
}
|
|
static C = class InnerInner {
|
|
m() {
|
|
new TestWithStatics().#prop // OK
|
|
new Inner().#foo; // OK
|
|
}
|
|
}
|
|
|
|
static M(){
|
|
return class {
|
|
m() {
|
|
new TestWithStatics().#prop // OK
|
|
new Inner().#foo; // OK
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
class TestNonStatics {
|
|
#prop = 0
|
|
dd = new TestNonStatics().#prop; // OK
|
|
["X_ z_ zz"] = class Inner {
|
|
#foo = 10
|
|
m() {
|
|
new TestNonStatics().#prop // Ok
|
|
}
|
|
C = class InnerInner {
|
|
m() {
|
|
new TestNonStatics().#prop // Ok
|
|
new Inner().#foo; // Ok
|
|
}
|
|
}
|
|
|
|
static M(){
|
|
return class {
|
|
m() {
|
|
new TestNonStatics().#prop // OK
|
|
new Inner().#foo; // OK
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |