File: declFileForClassWithPrivateOverloadedFunction.symbols

package info (click to toggle)
node-typescript 2.1.5-1~bpo8%2B1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-backports
  • size: 203,960 kB
  • sloc: sh: 11; makefile: 5
file content (17 lines) | stat: -rw-r--r-- 1,133 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
=== tests/cases/compiler/declFileForClassWithPrivateOverloadedFunction.ts ===

class C {
>C : Symbol(C, Decl(declFileForClassWithPrivateOverloadedFunction.ts, 0, 0))

    private foo(x: number);
>foo : Symbol(C.foo, Decl(declFileForClassWithPrivateOverloadedFunction.ts, 1, 9), Decl(declFileForClassWithPrivateOverloadedFunction.ts, 2, 27), Decl(declFileForClassWithPrivateOverloadedFunction.ts, 3, 27))
>x : Symbol(x, Decl(declFileForClassWithPrivateOverloadedFunction.ts, 2, 16))

    private foo(x: string);
>foo : Symbol(C.foo, Decl(declFileForClassWithPrivateOverloadedFunction.ts, 1, 9), Decl(declFileForClassWithPrivateOverloadedFunction.ts, 2, 27), Decl(declFileForClassWithPrivateOverloadedFunction.ts, 3, 27))
>x : Symbol(x, Decl(declFileForClassWithPrivateOverloadedFunction.ts, 3, 16))

    private foo(x: any) { }
>foo : Symbol(C.foo, Decl(declFileForClassWithPrivateOverloadedFunction.ts, 1, 9), Decl(declFileForClassWithPrivateOverloadedFunction.ts, 2, 27), Decl(declFileForClassWithPrivateOverloadedFunction.ts, 3, 27))
>x : Symbol(x, Decl(declFileForClassWithPrivateOverloadedFunction.ts, 4, 16))
}