TypeScript/tests/baselines/reference/sourceMapValidationWithComments.js

45 lines
828 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//// [sourceMapValidationWithComments.ts]
class DebugClass {
public static debugFunc() {
// Start Debugger Test Code
var i = 0;
i++;
i++;
i++;
i++;
i++;
i++;
i++;
i++;
i++;
// End Debugger Test Code
return true;
}
}
//// [sourceMapValidationWithComments.js]
var DebugClass = (function () {
function DebugClass() {
}
DebugClass.debugFunc = function () {
// Start Debugger Test Code
2014-07-13 01:04:16 +02:00
var i = 0;
i++;
i++;
i++;
i++;
i++;
i++;
i++;
i++;
i++;
// End Debugger Test Code
2014-07-13 01:04:16 +02:00
return true;
};
return DebugClass;
})();
//# sourceMappingURL=sourceMapValidationWithComments.js.map