Closed michaelficarra closed 9 years ago
I believe we already support this properly, but it needs tests.
try { throw 0; } catch (e) { e; } // 1 scope try { throw 0; } catch (e) { let a; e } // 2 scopes try { throw 0; } catch (e) { let e; e; } // 2 scopes, with shadowing
I believe we already support this properly, but it needs tests.