mirror of
https://github.com/swc-project/swc.git
synced 2024-12-30 00:52:29 +03:00
2fedf32747
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
13 lines
149 B
JavaScript
13 lines
149 B
JavaScript
import { getC } from './c';
|
|
|
|
export function a() {
|
|
return new A()
|
|
}
|
|
|
|
export class A extends getC() {
|
|
|
|
}
|
|
|
|
export function getA() {
|
|
return A;
|
|
} |