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

23 lines
1 KiB
Plaintext

=== tests/cases/compiler/declFileForInterfaceWithRestParams.ts ===
interface I {
>I : Symbol(I, Decl(declFileForInterfaceWithRestParams.ts, 0, 0))
foo(...x): typeof x;
>foo : Symbol(foo, Decl(declFileForInterfaceWithRestParams.ts, 1, 13))
>x : Symbol(x, Decl(declFileForInterfaceWithRestParams.ts, 2, 8))
>x : Symbol(x, Decl(declFileForInterfaceWithRestParams.ts, 2, 8))
foo2(a: number, ...x): typeof x;
>foo2 : Symbol(foo2, Decl(declFileForInterfaceWithRestParams.ts, 2, 24))
>a : Symbol(a, Decl(declFileForInterfaceWithRestParams.ts, 3, 9))
>x : Symbol(x, Decl(declFileForInterfaceWithRestParams.ts, 3, 19))
>x : Symbol(x, Decl(declFileForInterfaceWithRestParams.ts, 3, 19))
foo3(b: string, ...x: string[]): typeof x;
>foo3 : Symbol(foo3, Decl(declFileForInterfaceWithRestParams.ts, 3, 36))
>b : Symbol(b, Decl(declFileForInterfaceWithRestParams.ts, 4, 9))
>x : Symbol(x, Decl(declFileForInterfaceWithRestParams.ts, 4, 19))
>x : Symbol(x, Decl(declFileForInterfaceWithRestParams.ts, 4, 19))
}