TypeScript/tests/baselines/reference/sourceMapValidationWithComments.js

44 lines
793 B
JavaScript

//// [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
var i = 0;
i++;
i++;
i++;
i++;
i++;
i++;
i++;
i++;
i++;
return true;
};
return DebugClass;
})();
//# sourceMappingURL=sourceMapValidationWithComments.js.map