TypeScript/tests/baselines/reference/genericClasses0.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

26 lines
384 B
TypeScript

//// [genericClasses0.ts]
class C<T> {
public x: T;
}
var v1 : C<string>;
var y = v1.x; // should be 'string'
//// [genericClasses0.js]
var C = (function () {
function C() {
}
return C;
})();
var v1;
var y = v1.x; // should be 'string'
//// [genericClasses0.d.ts]
declare class C<T> {
x: T;
}
declare var v1: C<string>;
declare var y: string;