TypeScript/tests/baselines/reference/commentsOnObjectLiteral4.symbols
2015-04-15 16:44:20 -07:00

15 lines
275 B
Plaintext

=== tests/cases/compiler/commentsOnObjectLiteral4.ts ===
var v = {
>v : Symbol(v, Decl(commentsOnObjectLiteral4.ts, 1, 3))
/**
* @type {number}
*/
get bar(): number {
>bar : Symbol(bar, Decl(commentsOnObjectLiteral4.ts, 1, 9))
return this._bar;
}
}