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

11 lines
521 B
Text

=== tests/cases/compiler/interfaceWithCommaSeparators.ts ===
var v: { bar(): void, baz }
>v : Symbol(v, Decl(interfaceWithCommaSeparators.ts, 0, 3))
>bar : Symbol(bar, Decl(interfaceWithCommaSeparators.ts, 0, 8))
>baz : Symbol(baz, Decl(interfaceWithCommaSeparators.ts, 0, 21))
interface Foo { bar(): void, baz }
>Foo : Symbol(Foo, Decl(interfaceWithCommaSeparators.ts, 0, 27))
>bar : Symbol(bar, Decl(interfaceWithCommaSeparators.ts, 1, 15))
>baz : Symbol(baz, Decl(interfaceWithCommaSeparators.ts, 1, 28))