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