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