TypeScript/tests/baselines/reference/genericOfACloduleType1.js
Sheetal Nandi 6ab3adfd43 Modified the emitComment logic to handle emitting leading or trailing spaces depending on flags
Leading comments have trailing separator while trailing comments have leading space
This removes the extra trailing space in the trailing comments
2014-08-15 14:32:08 -07:00

46 lines
1,023 B
JavaScript

//// [genericOfACloduleType1.ts]
class G<T>{ bar(x: T) { return x; } }
module M {
export class C { foo() { } }
export module C {
export class X {
}
}
var g1 = new G<C>();
g1.bar(null).foo();
}
var g2 = new G<M.C>() // was: error Type reference cannot refer to container 'M.C'.
//// [genericOfACloduleType1.js]
var G = (function () {
function G() {
}
G.prototype.bar = function (x) {
return x;
};
return G;
})();
var M;
(function (M) {
var C = (function () {
function C() {
}
C.prototype.foo = function () {
};
return C;
})();
M.C = C;
(function (C) {
var X = (function () {
function X() {
}
return X;
})();
C.X = X;
})(M.C || (M.C = {}));
var C = M.C;
var g1 = new G();
g1.bar(null).foo();
})(M || (M = {}));
var g2 = new G(); // was: error Type reference cannot refer to container 'M.C'.