TypeScript/tests/baselines/reference/contextualTyping15.symbols
2016-03-16 13:45:55 -07:00

7 lines
312 B
Plaintext

=== tests/cases/compiler/contextualTyping15.ts ===
class foo { public bar: { (): number; (i: number): number; } = function() { return 1 }; }
>foo : Symbol(foo, Decl(contextualTyping15.ts, 0, 0))
>bar : Symbol(foo.bar, Decl(contextualTyping15.ts, 0, 11))
>i : Symbol(i, Decl(contextualTyping15.ts, 0, 39))