TypeScript/tests/baselines/reference/commentsBeforeVariableStatement1.js

11 lines
238 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//// [commentsBeforeVariableStatement1.ts]
/** b's comment*/
export var b: number;
//// [commentsBeforeVariableStatement1.js]
define(["require", "exports"], function (require, exports) {
/** b's comment*/
2014-07-13 01:04:16 +02:00
exports.b;
});