mirror of
https://github.com/swc-project/swc.git
synced 2024-12-21 04:32:01 +03:00
fe7f7b691b
swc_ecma_transforms_base: - `ts_resolver`: Handle class declarations properly.
10 lines
104 B
TypeScript
10 lines
104 B
TypeScript
class G<T> { }
|
|
class Foo {
|
|
get foo() {
|
|
class Foo {
|
|
|
|
}
|
|
|
|
new G<Foo>();
|
|
}
|
|
} |