TypeScript/tests/baselines/reference/getEmitOutputWithEmitterErrors2.baseline

15 lines
351 B
Text
Raw Normal View History

2014-09-17 00:19:41 +02:00
EmitOutputStatus : EmitErrorsEncountered
2014-09-12 22:20:10 +02:00
Filename : tests/cases/fourslash/inputFile.js
define(["require", "exports"], function (require, exports) {
var C = (function () {
function C() {
}
return C;
})();
var M;
(function (M) {
M.foo = new C();
})(M = exports.M || (exports.M = {}));
});
2014-09-12 22:20:10 +02:00