TypeScript/tests/baselines/reference/catch.symbols
2015-04-15 16:44:20 -07:00

12 lines
230 B
Plaintext

=== tests/cases/compiler/catch.ts ===
function f() {
>f : Symbol(f, Decl(catch.ts, 0, 0))
try {} catch(e) { }
>e : Symbol(e, Decl(catch.ts, 1, 17))
try {} catch(e) { }
>e : Symbol(e, Decl(catch.ts, 2, 17))
}