1 write to _fixedResults
Microsoft.CodeAnalysis.CSharp (1)
Binder\Semantics\OverloadResolution\MethodTypeInference.cs (1)
331
_fixedResults
= new (TypeWithAnnotations, bool)[methodTypeParameters.Length];
10 references to _fixedResults
Microsoft.CodeAnalysis.CSharp (10)
Binder\Semantics\OverloadResolution\MethodTypeInference.cs (10)
400
var fixedType =
_fixedResults
[i].Type;
448
var fixedResultType =
_fixedResults
[i].Type;
455
_fixedResults
[i] =
_fixedResults
[i] with { Type = fixedResultType.AsAnnotated() };
466
_fixedResults
[i] = (TypeWithAnnotations.Create(new ExtendedErrorTypeSymbol(_constructedContainingTypeOfMethod, _methodTypeParameters[i].Name, 0, null, false)), false);
480
return !
_fixedResults
[methodTypeParameterIndex].Type.HasType;
543
static (typeParameter, i, self) => self.IsUnfixed(i) ? TypeWithAnnotations.Create(typeParameter) : self.
_fixedResults
[i].Type,
2631
_fixedResults
[iParam] = best;
3075
var builder = ArrayBuilder<TypeWithAnnotations>.GetInstance(
_fixedResults
.Length);
3077
foreach (var fixedResult in
_fixedResults
)