TypeScript/tests/baselines/reference/recursiveProperties.types
Vladimir Matveev f06423bffc Revert "add part of test baselines"
This reverts commit 502b2ba321.
2016-03-09 17:08:26 -08:00

23 lines
424 B
Text

=== tests/cases/compiler/recursiveProperties.ts ===
class A {
>A : A
get testProp() { return this.testProp; }
>testProp : any
>this.testProp : any
>this : this
>testProp : any
}
class B {
>B : B
set testProp(value:string) { this.testProp = value; }
>testProp : string
>value : string
>this.testProp = value : string
>this.testProp : string
>this : this
>testProp : string
>value : string
}