File: classStaticBlock15%28target%3Desnext%29.types

package info (click to toggle)
node-typescript 5.0.4%2Bds1-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 459,116 kB
  • sloc: javascript: 1,972,754; makefile: 6; sh: 1
file content (34 lines) | stat: -rw-r--r-- 502 bytes parent folder | download | duplicates (9)
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
=== tests/cases/conformance/classes/classStaticBlock/classStaticBlock15.ts ===
var _C__1;
>_C__1 : any

class C {
>C : C

  static #_1 = 1;
>#_1 : number
>1 : 1

  static #_3 = 3;
>#_3 : number
>3 : 3

  static #_5 = 5;
>#_5 : number
>5 : 5

  static {}
  static {}
  static {}
  static {}
  static {}
  static {}
}

console.log(_C__1)
>console.log(_C__1) : void
>console.log : (...data: any[]) => void
>console : Console
>log : (...data: any[]) => void
>_C__1 : any