TypeScript/tests/baselines/reference/tryCatchFinally.js

23 lines
220 B
JavaScript
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 {
}