Private field check narrows generic class too far #46668
Labels
Bug
A bug in TypeScript
Fix Available
A PR has been opened for this issue
Rescheduled
This issue was previously scheduled to an earlier milestone
Milestone
Bug Report
Discovered a potential issue with #44648 in regards to how classes with type parameters are handled. The presence of the brand indicates that the object is an instance of this class, but doesn't say anything about the type arguments. For
instanceof
the current behavior is to passany
for all type arguments (see #17473 for that issue) but the default here should be that the type matches the constraint for that corresponding type parameter.🔎 Search Terms
ts4.5-beta
,private fields
,brand checks
,generic
,type parameter
,narrowing
🕗 Version & Regression Information
TypeScript Version:
ts4.5-beta
⏯ Playground Link
Playground link with relevant code
💻 Code
🙁 Actual behavior
Assignment in
copyValueFrom
proceeded without error, results in mismatch between type and value.🙂 Expected behavior
In
copyValueFrom
, expected brand to narrowx
toMyClass<Constraint>
and report errorType 'Constraint' is not assignable to type 'T'.
when assigningthis.value = x.value
.The text was updated successfully, but these errors were encountered: