1 write to ImplType
ILCompiler.ReadyToRun (1)
Compiler\DependencyAnalysis\ReadyToRunCodegenNodeFactory.cs (1)
667
ImplType
= implType;
6 references to ImplType
ILCompiler.ReadyToRun (6)
Compiler\DependencyAnalysis\ReadyToRunCodegenNodeFactory.cs (6)
341
return new ReadyToRun.VirtualResolutionFixupSignature(key.FixupKind, key.DeclMethod, key.
ImplType
, key.ImplMethod);
673
return FixupKind == other.FixupKind && DeclMethod.Equals(other.DeclMethod) &&
ImplType
== other.
ImplType
&&
685
return HashCode.Combine(FixupKind, DeclMethod,
ImplType
, ImplMethod);
687
return HashCode.Combine(FixupKind, DeclMethod,
ImplType
);
690
public override string ToString() => $"'{FixupKind}' '{DeclMethod}' on '{
ImplType
}' results in '{(ImplMethod != null ? ImplMethod.ToString() : "null")}'";