You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
functionfunc<T1,T3extends{[key: string]: (context: T1)=>void},T4={},// Commenting out this section of code makes it work properly.>(data: {T: T1;K: T3&ThisType<T1&T3>;}){}func({T: {bbb: 123,aaa(){return333;},},K: {bbb(context){console.log(context.aaa());console.log(context.bbb);this.ccc();},ccc(){},},});
π Actual behavior
display an error message:
'context' is of type 'unknown'.
'context' is of type 'unknown'.
'T4' is declared but its value is never read.
'data' is declared but its value is never read.
π Expected behavior
The type of 'context' should already be determined; it shouldn't be 'unknown'.
Additional information about the issue
No response
The text was updated successfully, but these errors were encountered:
LiST-GIT
changed the title
generic type inference failed
Generic type inference failed
Dec 24, 2023
The problem is the following if inside instantiateContextualType:
// If no inferences have been made, and none of the type parameters for which we are inferring// specify default types, nothing is gained from instantiating as type parameters would just be// replaced with their constraints similar to the apparent type.if(inferenceContext&&contextFlags!&ContextFlags.Signature&&some(inferenceContext.inferences,hasInferenceCandidatesOrDefault)){// For contextual signatures we incorporate all inferences made so far, e.g. from return// types as well as arguments to the left in a function call.returninstantiateInstantiableTypes(contextualType,inferenceContext.nonFixingMapper);}
The condition results true at the wrong time, too eagerly as far as I understand it, therefore stuff gets instantiated with some default types.
If you change the condition in one of the two following ways you solve this specific issue, but you get failing baselines:
!some(inferenceContext.inferences, hasInferenceCandidatesOrDefault) seems somewhat more related with the above comment (?), but you get too many failing baselines
every(inferenceContext.inferences, hasInferenceCandidatesOrDefault) just a couple of failing baselines, but one of them is about contextual inference and, guess what, it works here but not there anymore
π Search Terms
Generics
π Version & Regression Information
β― Playground Link
https://www.typescriptlang.org/play?#code/GYVwdgxgLglg9mABKSAeAUIriAqBGAGk2xwGZEBTADygrABMBnRAb0QG0BrCgTwC5EjKACcYYAOYBdAQAoICWjQH4AlIgC8APkQA3ODHqIAvkWy4ALBtYnEAeluIAwnAC2LurAmI4IKIigAFjDMjBTQ8EhwwIjy9BSILgCG3MwwfgDucMKciAAOwnC5FMIANjwAdOiaMvSJUIkCLMRYOMp4ANzNiADSyuQAZLhBjDg8Raj4iINkmp1Gak1G6OgoEDJNZq2sXWYARvsCeABMpKZm2ImXMguIwhRQIMJIpC-txmdYJl292+fY+7s5ApqFAFjs-jEEIw4CUKOUSnBxECwIooOVLolripOhDzvIwNDYfDEcjUeUAdjwX9AsFyhB6dccRCvrj6WsbizsF95u0gA
π» Code
π Actual behavior
display an error message:
'context' is of type 'unknown'.
'context' is of type 'unknown'.
'T4' is declared but its value is never read.
'data' is declared but its value is never read.
π Expected behavior
The type of 'context' should already be determined; it shouldn't be 'unknown'.
Additional information about the issue
No response
The text was updated successfully, but these errors were encountered: