File: declFileIndexSignatures.symbols

package info (click to toggle)
node-typescript 3.3.3333-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 324,548 kB
  • sloc: makefile: 6; sh: 3
file content (65 lines) | stat: -rw-r--r-- 2,464 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
=== tests/cases/compiler/declFileIndexSignatures_0.ts ===
export interface IStringIndexSignature {
>IStringIndexSignature : Symbol(IStringIndexSignature, Decl(declFileIndexSignatures_0.ts, 0, 0))

    [s: string]: string;
>s : Symbol(s, Decl(declFileIndexSignatures_0.ts, 1, 5))
}
export interface INumberIndexSignature {
>INumberIndexSignature : Symbol(INumberIndexSignature, Decl(declFileIndexSignatures_0.ts, 2, 1))

    [n: number]: number;
>n : Symbol(n, Decl(declFileIndexSignatures_0.ts, 4, 5))
}

export interface IBothIndexSignature {
>IBothIndexSignature : Symbol(IBothIndexSignature, Decl(declFileIndexSignatures_0.ts, 5, 1))

    [s: string]: any;
>s : Symbol(s, Decl(declFileIndexSignatures_0.ts, 8, 5))

    [n: number]: number;
>n : Symbol(n, Decl(declFileIndexSignatures_0.ts, 9, 5))
}

export interface IIndexSignatureWithTypeParameter<T> {
>IIndexSignatureWithTypeParameter : Symbol(IIndexSignatureWithTypeParameter, Decl(declFileIndexSignatures_0.ts, 10, 1))
>T : Symbol(T, Decl(declFileIndexSignatures_0.ts, 12, 50))

    [a: string]: T;
>a : Symbol(a, Decl(declFileIndexSignatures_0.ts, 13, 5))
>T : Symbol(T, Decl(declFileIndexSignatures_0.ts, 12, 50))
}

=== tests/cases/compiler/declFileIndexSignatures_1.ts ===
interface IGlobalStringIndexSignature {
>IGlobalStringIndexSignature : Symbol(IGlobalStringIndexSignature, Decl(declFileIndexSignatures_1.ts, 0, 0))

    [s: string]: string;
>s : Symbol(s, Decl(declFileIndexSignatures_1.ts, 1, 5))
}
interface IGlobalNumberIndexSignature {
>IGlobalNumberIndexSignature : Symbol(IGlobalNumberIndexSignature, Decl(declFileIndexSignatures_1.ts, 2, 1))

    [n: number]: number;
>n : Symbol(n, Decl(declFileIndexSignatures_1.ts, 4, 5))
}

interface IGlobalBothIndexSignature {
>IGlobalBothIndexSignature : Symbol(IGlobalBothIndexSignature, Decl(declFileIndexSignatures_1.ts, 5, 1))

    [s: string]: any;
>s : Symbol(s, Decl(declFileIndexSignatures_1.ts, 8, 5))

    [n: number]: number;
>n : Symbol(n, Decl(declFileIndexSignatures_1.ts, 9, 5))
}

interface IGlobalIndexSignatureWithTypeParameter<T> {
>IGlobalIndexSignatureWithTypeParameter : Symbol(IGlobalIndexSignatureWithTypeParameter, Decl(declFileIndexSignatures_1.ts, 10, 1))
>T : Symbol(T, Decl(declFileIndexSignatures_1.ts, 12, 49))

    [a: string]: T;
>a : Symbol(a, Decl(declFileIndexSignatures_1.ts, 13, 5))
>T : Symbol(T, Decl(declFileIndexSignatures_1.ts, 12, 49))
}