mirror of
https://github.com/swc-project/swc.git
synced 2024-12-25 06:36:08 +03:00
17f17e82e6
swc_bundler: - Add a testing system for constant inliner. swc_ecma_transforms_optimization: - const_propagation: Handle export specifiers. - const_propagation: Handle inlining of variables whose initializer is inlined. - dce: Allow dropping identifiers used in `exported` part of export specifiers.
5 lines
89 B
TypeScript
5 lines
89 B
TypeScript
export class MyError extends Error {
|
|
constructor() {
|
|
super("I'm in?")
|
|
}
|
|
} |