File: declInput4.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 (49 lines) | stat: -rw-r--r-- 671 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
=== tests/cases/compiler/declInput4.ts ===
module M {
>M : typeof M

    class C { }
>C : C

    export class E {}
>E : E

    export interface I1 {}
>I1 : I1

    interface I2 {}
>I2 : I2

    export class D {
>D : D

        public m1: number;
>m1 : number

        public m2: string;
>m2 : string

        public m23: E;
>m23 : E
>E : E

        public m24: I1;
>m24 : I1
>I1 : I1

        public m232(): E { return null;}
>m232 : () => E
>E : E
>null : null

        public m242(): I1 { return null; }
>m242 : () => I1
>I1 : I1
>null : null

        public m26(i:I1) {}
>m26 : (i: I1) => void
>i : I1
>I1 : I1
    }
}