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
|
=== tests/cases/conformance/classes/constructorDeclarations/constructorParameters/readonlyInConstructorParameters.ts ===
class C {
>C : Symbol(C, Decl(readonlyInConstructorParameters.ts, 0, 0))
constructor(readonly x: number) {}
>x : Symbol(C.x, Decl(readonlyInConstructorParameters.ts, 1, 16))
}
new C(1).x = 2;
>new C(1).x : Symbol(C.x, Decl(readonlyInConstructorParameters.ts, 1, 16))
>C : Symbol(C, Decl(readonlyInConstructorParameters.ts, 0, 0))
>x : Symbol(C.x, Decl(readonlyInConstructorParameters.ts, 1, 16))
class E {
>E : Symbol(E, Decl(readonlyInConstructorParameters.ts, 3, 15))
constructor(readonly public x: number) {}
>x : Symbol(E.x, Decl(readonlyInConstructorParameters.ts, 6, 16))
}
class F {
>F : Symbol(F, Decl(readonlyInConstructorParameters.ts, 7, 1))
constructor(private readonly x: number) {}
>x : Symbol(F.x, Decl(readonlyInConstructorParameters.ts, 10, 16))
}
new F(1).x;
>new F(1).x : Symbol(F.x, Decl(readonlyInConstructorParameters.ts, 10, 16))
>F : Symbol(F, Decl(readonlyInConstructorParameters.ts, 7, 1))
>x : Symbol(F.x, Decl(readonlyInConstructorParameters.ts, 10, 16))
|