1 write to DeclMethod
ILCompiler.ReadyToRun (1)
Compiler\DependencyAnalysis\ReadyToRunCodegenNodeFactory.cs (1)
709
DeclMethod
= declMethod;
6 references to DeclMethod
ILCompiler.ReadyToRun (6)
Compiler\DependencyAnalysis\ReadyToRunCodegenNodeFactory.cs (6)
384
return new ReadyToRun.VirtualResolutionFixupSignature(key.FixupKind, key.
DeclMethod
, key.ImplType, key.ImplMethod);
716
return FixupKind == other.FixupKind &&
DeclMethod
.Equals(other.
DeclMethod
) && ImplType == other.ImplType &&
728
return HashCode.Combine(FixupKind,
DeclMethod
, ImplType, ImplMethod);
730
return HashCode.Combine(FixupKind,
DeclMethod
, ImplType);
733
public override string ToString() => $"'{FixupKind}' '{
DeclMethod
}' on '{ImplType}' results in '{(ImplMethod != null ? ImplMethod.ToString() : "null")}'";