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

9 lines
225 B
Plaintext

=== tests/cases/compiler/tryCatchFinally.ts ===
try { } catch(e) { } finally { }
>e : Symbol(e, Decl(tryCatchFinally.ts, 0, 14))
try {} catch(e) {}
>e : Symbol(e, Decl(tryCatchFinally.ts, 2, 13))
try {} finally {}