Base:
3 references to GetHashCode
Microsoft.CodeAnalysis.CSharp (3)
BoundTree\BoundDagEvaluation.cs (2)
72
return Hash.Combine(Input.
GetHashCode
(), this.Symbol?.GetHashCode() ?? 0);
153
public override int GetHashCode() => Hash.Combine(base.GetHashCode(), this.Target.
GetHashCode
());
BoundTree\BoundDagTest.cs (1)
46
return Hash.Combine(((int)Kind).GetHashCode(), Input.
GetHashCode
());