TypeScript/tests/baselines/reference/tryCatchFinally.js

16 lines
213 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//// [tryCatchFinally.ts]
try { } catch(e) { } finally { }
try {} catch(e) {}
try {} finally {}
//// [tryCatchFinally.js]
try { }
catch (e) { }
finally { }
try { }
catch (e) { }
try { }
finally { }