mirror of
https://github.com/swc-project/swc.git
synced 2024-12-20 12:12:16 +03:00
842b6f953c
swc_bunder: - Fix `keywords` pass. swc_ecma_codegen: - Ensure that the code generator handles unicode characters properly. (denoland/deno#8925) swc_ecma_parser: - Ensure that the parser handles unicode characters properly. (denoland/deno#8925) swc_ecma_transforms: - Fix dce.
8 lines
123 B
TypeScript
8 lines
123 B
TypeScript
class T {
|
|
private throws: number[] = [];
|
|
m(): void {
|
|
console.log(this.throws.length);
|
|
}
|
|
}
|
|
|
|
new T().m(); |