File: quickInfoDisplayPartsClassAccessors.ts

package info (click to toggle)
node-typescript 4.8.4%2Bds1-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 523,068 kB
  • sloc: javascript: 1,735,777; makefile: 7; sh: 1
file content (39 lines) | stat: -rw-r--r-- 1,696 bytes parent folder | download | duplicates (7)
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
/// <reference path='fourslash.ts'/>

////class c {
////    public get /*1*/publicProperty() { return ""; }
////    public set /*1s*/publicProperty(x: string) { }
////    private get /*2*/privateProperty() { return ""; }
////    private set /*2s*/privateProperty(x: string) { }
////    protected get /*21*/protectedProperty() { return ""; }
////    protected set /*21s*/protectedProperty(x: string) { }
////    static get /*3*/staticProperty() { return ""; }
////    static set /*3s*/staticProperty(x: string) { }
////    private static get  /*4*/privateStaticProperty() { return ""; }
////    private static set /*4s*/privateStaticProperty(x: string) { }
////    protected static get /*41*/protectedStaticProperty() { return ""; }
////    protected static set /*41s*/protectedStaticProperty(x: string) { }
////    method() {
////        var x : string;
////        x = this./*5*/publicProperty;
////        x = this./*6*/privateProperty;
////        x = this./*61*/protectedProperty;
////        x = c./*7*/staticProperty;
////        x = c./*8*/privateStaticProperty;
////        x = c./*81*/protectedStaticProperty;
////        this./*5s*/publicProperty = "";
////        this./*6s*/privateProperty = "";
////        this./*61s*/protectedProperty = "";
////        c./*7s*/staticProperty = "";
////        c./*8s*/privateStaticProperty = "";
////        c./*81s*/protectedStaticProperty = "";
////    }
////}
////var cInstance = new c();
////var y: string;
////y = /*9*/cInstance./*10*/publicProperty;
////y = /*11*/c./*12*/staticProperty;
/////*9s*/cInstance./*10s*/publicProperty = y;
/////*11s*/c./*12s*/staticProperty = y;

verify.baselineQuickInfo();