File: declInput-2.errors.txt

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 (39 lines) | stat: -rw-r--r-- 2,095 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
tests/cases/compiler/declInput-2.ts(10,21): error TS4031: Public property 'm22' of exported class has or is using private name 'C'.
tests/cases/compiler/declInput-2.ts(13,21): error TS4031: Public property 'm25' of exported class has or is using private name 'I2'.
tests/cases/compiler/declInput-2.ts(16,24): error TS4055: Return type of public method from exported class has or is using private name 'I2'.
tests/cases/compiler/declInput-2.ts(18,23): error TS4073: Parameter 'i' of public method from exported class has or is using private name 'I2'.
tests/cases/compiler/declInput-2.ts(19,21): error TS4055: Return type of public method from exported class has or is using private name 'C'.


==== tests/cases/compiler/declInput-2.ts (5 errors) ====
    module M {
        class C { }
        export class E {}
        export interface I1 {}
        interface I2 {}
        export class D {
            private c: C; // don't generate
            public m1: number;
            public m2: string;
            public m22: C; // don't generate
                        ~
!!! error TS4031: Public property 'm22' of exported class has or is using private name 'C'.
            public m23: E;
            public m24: I1;
            public m25: I2; // don't generate
                        ~~
!!! error TS4031: Public property 'm25' of exported class has or is using private name 'I2'.
            public m232(): E { return null;}
            public m242(): I1 { return null; }
            public m252(): I2 { return null; } // don't generate
                           ~~
!!! error TS4055: Return type of public method from exported class has or is using private name 'I2'.
            public m26(i:I1) {}
            public m262(i:I2) {}
                          ~~
!!! error TS4073: Parameter 'i' of public method from exported class has or is using private name 'I2'.
            public m3():C { return new C(); }
                        ~
!!! error TS4055: Return type of public method from exported class has or is using private name 'C'.
        }
    }