File: interfacedecl.types

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 (95 lines) | stat: -rw-r--r-- 1,151 bytes parent folder | download | duplicates (2)
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
=== tests/cases/compiler/interfacedecl.ts ===
interface a0 {
>a0 : a0

    (): string;
    (a, b, c?: string): number;
>a : any
>b : any
>c : string
    
    new (): string;
    new (s: string);
>s : string

    [n: number]: ()=>string;
>n : number

    [s: string]: any;
>s : string

    p1;
>p1 : any

    p2: string;
>p2 : string

    p3?;
>p3 : any

    p4?: number;
>p4 : number

    p5: (s: number) =>string;
>p5 : (s: number) => string
>s : number

    f1();
>f1 : () => any

    f2? ();
>f2 : () => any

    f3(a: string): number;
>f3 : (a: string) => number
>a : string

    f4? (s: number): string;
>f4 : (s: number) => string
>s : number
}


interface a1 {
>a1 : a1

    [n: number]: number;
>n : number
}

interface a2 {
>a2 : a2

    [s: string]: number;
>s : string
}

interface a {
>a : a
}

interface b extends a {
>b : b
>a : a
}

interface c extends a, b {
>c : c
>a : a
>b : b
}

interface d extends a {
>d : d
>a : a
}

class c1 implements a {
>c1 : c1
>a : a
}
var instance2 = new c1();
>instance2 : c1
>new c1() : c1
>c1 : typeof c1