mirror of
https://github.com/swc-project/swc.git
synced 2024-12-25 14:43:33 +03:00
1af1840d01
swc_bundler: - Skip least_common_ancestor for roots. - Correct planning for circular imports mixed with normal imports. - Correct merging of circular imports mixed with normal imports.
10 lines
116 B
JavaScript
10 lines
116 B
JavaScript
console.log('c');
|
|
class A {
|
|
method() {
|
|
return new B();
|
|
}
|
|
}
|
|
class B extends A {
|
|
}
|
|
console.log(A, B);
|