TypeScript/tests/baselines/reference/tryCatchFinally.js

16 lines
213 B
TypeScript

//// [tryCatchFinally.ts]
try { } catch(e) { } finally { }
try {} catch(e) {}
try {} finally {}
//// [tryCatchFinally.js]
try { }
catch (e) { }
finally { }
try { }
catch (e) { }
try { }
finally { }