swc/spack/tests/pass/circular/hygiene/class-inheritance/input/b.js
강동윤 2fedf32747
swc_bundler (#943)
swc_bundler:
 - Splitted from spack

swc_ecma_parser:
 - Fix unexpected eof problem which occurs if log level is trace

swc_ecma_transforms:
 - Fix bugs of dce pass

spack:
 - Support cyclic dependencies
2020-08-12 22:18:47 +09:00

8 lines
119 B
JavaScript

import { A } from './a';
import { C } from './c';
export class B extends C {
a() {
return new A();
}
}