mirror of
https://github.com/swc-project/swc.git
synced 2024-12-23 05:32:09 +03:00
fe7f7b691b
swc_ecma_transforms_base: - `ts_resolver`: Handle class declarations properly.
9 lines
72 B
TypeScript
9 lines
72 B
TypeScript
class Foo<T__2> {
|
|
}
|
|
class A {
|
|
}
|
|
class B {
|
|
}
|
|
new Foo<A>();
|
|
new Foo<B>();
|