1 write to RemainingTests
Microsoft.CodeAnalysis.CSharp (1)
Binder\DecisionDagBuilder.cs (1)
2271this.RemainingTests = RemainingTests;
13 references to RemainingTests
Microsoft.CodeAnalysis.CSharp (13)
Binder\DecisionDagBuilder.cs (13)
1223RoslynDebug.Assert(!(first.RemainingTests is Tests.False)); 1290stateForCase.RemainingTests.Filter(this, test, state, whenTrueValues, whenFalseValues, out Tests whenTrueTests, out Tests whenFalseTests, ref foundExplicitNullTest); 1423var remainingTests = stateForCase.RemainingTests.RemoveEvaluation(this, state, stateForCase.Bindings, e); 1983builder.Append($"{cd.Index}. [{cd.Syntax}] {(cd.PatternIsSatisfied ? "MATCH" : cd.RemainingTests.Dump(dumpDagTest))}"); 2192return Cases[0].RemainingTests.ComputeSelectedTest(); 2280public bool IsFullyMatched => RemainingTests is Tests.True && (WhenClause is null || WhenClause.ConstantValueOpt == ConstantValue.True); 2285public bool PatternIsSatisfied => RemainingTests is Tests.True; 2291public bool IsImpossible => RemainingTests is Tests.False; 2303this.RemainingTests.Equals(other.RemainingTests); 2308return Hash.Combine(RemainingTests.GetHashCode(), Index); 2313return newRemainingTests.Equals(RemainingTests) 2321return this.WithRemainingTests(RemainingTests.RewriteNestedLengthTests());