File: paramPropertiesInSignatures.symbols

package info (click to toggle)
node-typescript 3.3.3333-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 324,548 kB
  • sloc: makefile: 6; sh: 3
file content (26 lines) | stat: -rw-r--r-- 880 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
=== tests/cases/compiler/paramPropertiesInSignatures.ts ===
class C1 {
>C1 : Symbol(C1, Decl(paramPropertiesInSignatures.ts, 0, 0))

	constructor(public p1:string); // ERROR
>p1 : Symbol(C1.p1, Decl(paramPropertiesInSignatures.ts, 1, 13))

	constructor(private p2:number); // ERROR
>p2 : Symbol(C1.p2, Decl(paramPropertiesInSignatures.ts, 2, 13))

	constructor(public p3:any) {} // OK
>p3 : Symbol(C1.p3, Decl(paramPropertiesInSignatures.ts, 3, 13))
}

declare class C2 {
>C2 : Symbol(C2, Decl(paramPropertiesInSignatures.ts, 4, 1))

	constructor(public p1:string); // ERROR
>p1 : Symbol(C2.p1, Decl(paramPropertiesInSignatures.ts, 7, 13))

	constructor(private p2:number); // ERROR
>p2 : Symbol(C2.p2, Decl(paramPropertiesInSignatures.ts, 8, 13))

	constructor(public p3:any); // ERROR
>p3 : Symbol(C2.p3, Decl(paramPropertiesInSignatures.ts, 9, 13))
}