1 override of Equals
Microsoft.CodeAnalysis.CSharp (1)
BoundTree\BoundDagEvaluation.cs (1)
288public override bool Equals(BoundDagEvaluation other)
3 references to Equals
Microsoft.CodeAnalysis.CSharp (3)
Binder\DecisionDagBuilder.cs (1)
2814Debug.Assert(!typeEval.Equals(e1));
BoundTree\BoundDagEvaluation.cs (1)
16public sealed override bool Equals([NotNullWhen(true)] object? obj) => obj is BoundDagEvaluation other && this.Equals(other);
BoundTree\BoundDecisionDagNode.cs (1)
26return n1.Evaluation.Equals(n2.Evaluation) && n1.Next == n2.Next;