1 write to Test
Microsoft.CodeAnalysis.CSharp (1)
Binder\DecisionDagBuilder.cs (1)
3409public 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 _)); 3410public void Deconstruct(out BoundDagTest Test) => Test = this.Test; 3422BoundDagTest other = this.Test; 3478public override BoundDagTest ComputeSelectedTest(DecisionDagBuilder builder) => this.Test; 3479public override string Dump(Func<BoundDagTest, string> dump) => dump(this.Test); 3480public override bool Equals(object? obj) => this == obj || obj is One other && this.Test.Equals(other.Test); 3481public override int GetHashCode() => this.Test.GetHashCode(); 3484BoundDagTest test = Test; 3553if (Test == e) 3562var updatedTest = UpdateDagTempReferences(Test, ref tempMap); 3571if (!Test.Equals(updatedTest)) 3585Test is BoundDagIndexerEvaluation && 3587Debug.Assert(Test is not BoundDagIndexerEvaluation || 3656if (tests.Test is BoundDagEvaluation eval && 3739if (tests.Test is BoundDagTypeEvaluation typeEval && IsSameEntity(typeEval.MakeResultTemp(), e1.MakeResultTemp())) 3816if (tests.Test is BoundDagIndexerEvaluation s2 && s2.IndexerType.Equals(s1.IndexerType, TypeCompareKind.AllIgnoreOptions)) 4619if (RemainingTests[0] is One { Test: { Kind: BoundKind.DagNonNullTest } planA }) 4650case One { Test: { Kind: BoundKind.DagTypeTest } planB1 }: 4657case One { Test: { Kind: BoundKind.DagValueTest } planB2 }: