File: staticVisibility.types

package info (click to toggle)
node-typescript 5.0.4%2Bds1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 459,140 kB
  • sloc: javascript: 1,972,754; makefile: 6; sh: 1
file content (86 lines) | stat: -rw-r--r-- 1,169 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
=== tests/cases/compiler/staticVisibility.ts ===
class C1 {
>C1 : C1
    
    p: any;
>p : any

    static s: any;
>s : any

    constructor() {
        var v = 0;
>v : number
>0 : 0

        s = 1; // should be error
>s = 1 : 1
>s : any
>1 : 1

        C1.s = 1; // should be ok
>C1.s = 1 : 1
>C1.s : any
>C1 : typeof C1
>s : any
>1 : 1

        b(); // should be error
>b() : any
>b : any

        C1.b(); // should be ok
>C1.b() : void
>C1.b : () => void
>C1 : typeof C1
>b : () => void
    }

    static b() {
>b : () => void

        v = 1; // should be error
>v = 1 : 1
>v : any
>1 : 1

        this.p = 0; // should be error
>this.p = 0 : 0
>this.p : any
>this : typeof C1
>p : any
>0 : 0

        C1.s = 1; // should be ok
>C1.s = 1 : 1
>C1.s : any
>C1 : typeof C1
>s : any
>1 : 1
    }
}

class C2 {
>C2 : C2
 
barback:string = "";
>barback : string
>"" : ""
 



static get Bar() {return "bar";} // ok
>Bar : string
>"bar" : "bar"
 
static set Bar(bar:string) {barback = bar;} // not ok
>Bar : string
>bar : string
>barback = bar : string
>barback : any
>bar : string

}