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

16 lines
320 B
JavaScript

//// [genericFunctions0.ts]
function foo<T > (x: T) { return x; }
var x = foo<number>(5); // 'x' should be number
//// [genericFunctions0.js]
function foo(x) {
return x;
}
var x = foo(5); // 'x' should be number
//// [genericFunctions0.d.ts]
declare function foo<T>(x: T): T;
declare var x: number;