File: classStaticBlock16.errors.txt

package info (click to toggle)
node-typescript 5.2.2-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 497,488 kB
  • sloc: javascript: 2,107,274; makefile: 6; sh: 1
file content (37 lines) | stat: -rw-r--r-- 1,364 bytes parent folder | download
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
classStaticBlock16.ts(11,5): error TS2448: Block-scoped variable 'getY' used before its declaration.
classStaticBlock16.ts(11,28): error TS18013: Property '#y' is not accessible outside class 'D' because it has a private identifier.
classStaticBlock16.ts(21,28): error TS18013: Property '#x' is not accessible outside class 'C' because it has a private identifier.


==== classStaticBlock16.ts (3 errors) ====
    let getX: (c: C) => number;
    class C {
      #x = 1
      constructor(x: number) {
        this.#x = x;
      }
    
      static {
        // getX has privileged access to #x
        getX = (obj: C) => obj.#x;
        getY = (obj: D) => obj.#y;
        ~~~~
!!! error TS2448: Block-scoped variable 'getY' used before its declaration.
!!! related TS2728 classStaticBlock16.ts:15:5: 'getY' is declared here.
                               ~~
!!! error TS18013: Property '#y' is not accessible outside class 'D' because it has a private identifier.
      }
    }
    
    let getY: (c: D) => number;
    class D {
      #y = 1
    
      static {
        // getY has privileged access to y
        getX = (obj: C) => obj.#x;
                               ~~
!!! error TS18013: Property '#x' is not accessible outside class 'C' because it has a private identifier.
        getY = (obj: D) => obj.#y;
      }
    }