TypeScript/tests/baselines/reference/commentsPropertySignature1.js

13 lines
160 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//// [commentsPropertySignature1.ts]
var a = {
/** own x*/
x: 0
};
//// [commentsPropertySignature1.js]
var a = {
/** own x*/
2014-07-13 01:04:16 +02:00
x: 0
};