TypeScript/tests/baselines/reference/classAttributeInferenceTemplate.types
Wesley Wigham 8268f2adec
Avoid bogus circularity error on context sensitive constructor property assignments (#44601)
* Avoid bogus circularity error on context sensitive constructor property assignments

* Add JS case and ensure its fixed
2021-07-15 17:06:56 -07:00

37 lines
869 B
Plaintext

=== tests/cases/compiler/classAttributeInferenceTemplate.ts ===
class MyClass {
>MyClass : MyClass
property;
>property : string
property2;
>property2 : string
constructor() {
const variable = 'something'
>variable : "something"
>'something' : "something"
this.property = `foo`; // Correctly inferred as `string`
>this.property = `foo` : "foo"
>this.property : string
>this : this
>property : string
>`foo` : "foo"
this.property2 = `foo-${variable}`; // Causes an error
>this.property2 = `foo-${variable}` : string
>this.property2 : string
>this : this
>property2 : string
>`foo-${variable}` : string
>variable : "something"
const localProperty = `foo-${variable}`; // Correctly inferred as `string`
>localProperty : string
>`foo-${variable}` : string
>variable : "something"
}
}