TypeScript/tests/baselines/reference/commentsPropertySignature1.types

12 lines
187 B
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/commentsPropertySignature1.ts ===
var a = {
>a : { x: number; }
2014-08-22 03:39:46 +02:00
>{ /** own x*/ x: 0} : { x: number; }
2014-08-15 23:33:16 +02:00
/** own x*/
x: 0
>x : number
};