1 write to Test
Microsoft.CodeAnalysis.CSharp (1)
Binder\DecisionDagBuilder.cs (1)
3429public One(BoundDagTest test) => this.Test = test;
21 references to Test
Microsoft.CodeAnalysis.CSharp (21)
Binder\DecisionDagBuilder.cs (21)
753Debug.Assert(test is Tests.One { Test: BoundDagValueTest }); 798Debug.Assert(test is Tests.One { Test: var tryGetValueResultTest } && IsUnionTryGetValueTest(tryGetValueResultTest, out _, out _, out _)); 3430public void Deconstruct(out BoundDagTest Test) => Test = this.Test; 3442BoundDagTest other = this.Test; 3498public override BoundDagTest ComputeSelectedTest(DecisionDagBuilder builder) => this.Test; 3499public override string Dump(Func<BoundDagTest, string> dump) => dump(this.Test); 3500public override bool Equals(object? obj) => this == obj || obj is One other && this.Test.Equals(other.Test); 3501public override int GetHashCode() => this.Test.GetHashCode(); 3504BoundDagTest test = Test; 3573if (Test == e) 3582var updatedTest = UpdateDagTempReferences(Test, ref tempMap); 3591if (!Test.Equals(updatedTest)) 3605Test is BoundDagIndexerEvaluation && 3607Debug.Assert(Test is not BoundDagIndexerEvaluation || 3676if (tests.Test is BoundDagEvaluation eval && 3759if (tests.Test is BoundDagTypeEvaluation typeEval && IsSameEntity(typeEval.MakeResultTemp(), e1.MakeResultTemp())) 3836if (tests.Test is BoundDagIndexerEvaluation s2 && s2.IndexerType.Equals(s1.IndexerType, TypeCompareKind.AllIgnoreOptions)) 4639if (RemainingTests[0] is One { Test: { Kind: BoundKind.DagNonNullTest } planA }) 4670case One { Test: { Kind: BoundKind.DagTypeTest } planB1 }: 4677case One { Test: { Kind: BoundKind.DagValueTest } planB2 }: