mirror of
https://github.com/swc-project/swc.git
synced 2024-12-28 08:04:43 +03:00
27aad87798
swc_ecma_transforms_base: - `hygiene`: Apply ops in catch clauses. (#1402)
7 lines
67 B
TypeScript
7 lines
67 B
TypeScript
var e = 1;
|
|
try {
|
|
throw 2;
|
|
} catch (e1) {
|
|
console.log(e);
|
|
}
|