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

13 lines
291 B
TypeScript

//// [partiallyAmbientClodule.ts]
declare module foo {
export function x(): any;
}
class foo { } // Legal, because module is ambient
//// [partiallyAmbientClodule.js]
var foo = (function () {
function foo() {
}
return foo;
})(); // Legal, because module is ambient