TypeScript/tests/baselines/reference/sourceMapForFunctionInInternalModuleWithCommentPrecedingStatement01.js
2015-04-21 16:15:04 -07:00

17 lines
No EOL
448 B
TypeScript

//// [sourceMapForFunctionInInternalModuleWithCommentPrecedingStatement01.ts]
module Q {
function P() {
// Test this
var a = 1;
}
}
//// [sourceMapForFunctionInInternalModuleWithCommentPrecedingStatement01.js]
var Q;
(function (Q) {
function P() {
// Test this
var a = 1;
}
})(Q || (Q = {}));
//# sourceMappingURL=sourceMapForFunctionInInternalModuleWithCommentPrecedingStatement01.js.map