TypeScript/tests/baselines/reference/commentsPropertySignature1.js
2014-07-12 17:30:19 -07:00

12 lines
143 B
JavaScript

//// [commentsPropertySignature1.ts]
var a = {
/** own x*/
x: 0
};
//// [commentsPropertySignature1.js]
var a = {
x: 0
};