TypeScript/tests/baselines/reference/moduleWithTryStatement1.js
2014-07-12 17:30:19 -07:00

20 lines
227 B
TypeScript

//// [moduleWithTryStatement1.ts]
module M {
try {
}
catch (e) {
}
}
var v = M;
//// [moduleWithTryStatement1.js]
var M;
(function (M) {
try {
}
catch (e) {
}
})(M || (M = {}));
var v = M;