1 write to Test
Microsoft.CodeAnalysis.CSharp (1)
Binder\DecisionDagBuilder.cs (1)
2134
public One(BoundDagTest test) => this.
Test
= test;
12 references to Test
Microsoft.CodeAnalysis.CSharp (12)
Binder\DecisionDagBuilder.cs (12)
2135
public void Deconstruct(out BoundDagTest Test) => Test = this.
Test
;
2147
BoundDagTest other = this.
Test
;
2208
public override BoundDagTest ComputeSelectedTest() => this.
Test
;
2209
public override Tests RemoveEvaluation(BoundDagEvaluation e) => e.Equals(
Test
) ? Tests.True.Instance : (Tests)this;
2210
public override string Dump(Func<BoundDagTest, string> dump) => dump(this.
Test
);
2211
public override bool Equals(object? obj) => this == obj || obj is One other && this.
Test
.Equals(other.
Test
);
2212
public override int GetHashCode() => this.
Test
.GetHashCode();
2215
BoundDagTest test =
Test
;
2431
if (RemainingTests[0] is One {
Test
: { Kind: BoundKind.DagNonNullTest } planA })
2438
case One {
Test
: { Kind: BoundKind.DagTypeTest } planB1 }:
2445
case One {
Test
: { Kind: BoundKind.DagValueTest } planB2 }: