1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
=== tests/cases/compiler/recursiveProperties.ts ===
class A {
>A : Symbol(A, Decl(recursiveProperties.ts, 0, 0))
get testProp() { return this.testProp; }
>testProp : Symbol(A.testProp, Decl(recursiveProperties.ts, 0, 9))
>this.testProp : Symbol(A.testProp, Decl(recursiveProperties.ts, 0, 9))
>this : Symbol(A, Decl(recursiveProperties.ts, 0, 0))
>testProp : Symbol(A.testProp, Decl(recursiveProperties.ts, 0, 9))
}
class B {
>B : Symbol(B, Decl(recursiveProperties.ts, 2, 1))
set testProp(value:string) { this.testProp = value; }
>testProp : Symbol(B.testProp, Decl(recursiveProperties.ts, 4, 9))
>value : Symbol(value, Decl(recursiveProperties.ts, 5, 17))
>this.testProp : Symbol(B.testProp, Decl(recursiveProperties.ts, 4, 9))
>this : Symbol(B, Decl(recursiveProperties.ts, 2, 1))
>testProp : Symbol(B.testProp, Decl(recursiveProperties.ts, 4, 9))
>value : Symbol(value, Decl(recursiveProperties.ts, 5, 17))
}
|