1 write to Test
Microsoft.CodeAnalysis.CSharp (1)
Binder\DecisionDagBuilder.cs (1)
3382public One(BoundDagTest test) => this.Test = test;
21 references to Test
Microsoft.CodeAnalysis.CSharp (21)
Binder\DecisionDagBuilder.cs (21)
759Debug.Assert(test is Tests.One { Test: BoundDagValueTest }); 804Debug.Assert(test is Tests.One { Test: var tryGetValueResultTest } && IsUnionTryGetValueTest(tryGetValueResultTest, out _, out _, out _)); 3383public void Deconstruct(out BoundDagTest Test) => Test = this.Test; 3395BoundDagTest other = this.Test; 3451public override BoundDagTest ComputeSelectedTest(bool forLowering, ref bool suitableForLowering) => this.Test; 3452public override string Dump(Func<BoundDagTest, string> dump) => dump(this.Test); 3453public override bool Equals(object? obj) => this == obj || obj is One other && this.Test.Equals(other.Test); 3454public override int GetHashCode() => this.Test.GetHashCode(); 3457BoundDagTest test = Test; 3526if (Test == e) 3535var updatedTest = UpdateDagTempReferences(Test, ref tempMap); 3544if (!Test.Equals(updatedTest)) 3558Test is BoundDagIndexerEvaluation && 3560Debug.Assert(Test is not BoundDagIndexerEvaluation || 3629if (tests.Test is BoundDagEvaluation eval && 3712if (tests.Test is BoundDagTypeEvaluation typeEval && IsSameEntity(typeEval.MakeResultTemp(), e1.MakeResultTemp())) 3789if (tests.Test is BoundDagIndexerEvaluation s2 && s2.IndexerType.Equals(s1.IndexerType, TypeCompareKind.AllIgnoreOptions)) 4588if (RemainingTests[0] is One { Test: { Kind: BoundKind.DagNonNullTest } planA }) 4619case One { Test: { Kind: BoundKind.DagTypeTest } planB1 }: 4626case One { Test: { Kind: BoundKind.DagValueTest } planB2 }: