Base:
1 override of Equals
Microsoft.CodeAnalysis.CSharp (1)
BoundTree\BoundDagEvaluation.cs (1)
13public sealed override bool Equals([NotNullWhen(true)] object? obj) => obj is BoundDagEvaluation other && this.Equals(other);
3 references to Equals
Microsoft.CodeAnalysis.CSharp (3)
Binder\DecisionDagBuilder.cs (2)
1366bool sameTest = test.Equals(other); 2211public override bool Equals(object? obj) => this == obj || obj is One other && this.Test.Equals(other.Test);
BoundTree\BoundDecisionDagNode.cs (1)
28return n1.Test.Equals(n2.Test) && n1.WhenTrue == n2.WhenTrue && n1.WhenFalse == n2.WhenFalse;