mirror of
https://github.com/swc-project/swc.git
synced 2025-01-05 20:42:51 +03:00
27aad87798
swc_ecma_transforms_base: - `hygiene`: Apply ops in catch clauses. (#1402)
6 lines
59 B
TypeScript
6 lines
59 B
TypeScript
var e = 1;
|
|
try {
|
|
throw 2
|
|
} catch {
|
|
console.log(e)
|
|
} |