swc/spack/tests/pass/circular/mixed/output/entry.js
강동윤 1af1840d01
Fix swc_bundler (#1075)
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.
2020-09-16 18:28:10 +09:00

10 lines
116 B
JavaScript

console.log('c');
class A {
method() {
return new B();
}
}
class B extends A {
}
console.log(A, B);