swc/bundler/tests/deno-exec/deno-8988/entry.ts
강동윤 842b6f953c
fix(ecmascript/transforms): Fix dce (#1301)
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.
2021-01-05 18:45:26 +09:00

8 lines
123 B
TypeScript

class T {
private throws: number[] = [];
m(): void {
console.log(this.throws.length);
}
}
new T().m();