6 types derived from BoundDagTest
Microsoft.CodeAnalysis.CSharp (6)
Generated\BoundNodes.xml.Generated.cs (6)
5227internal sealed partial class BoundDagTypeTest : BoundDagTest 5256internal sealed partial class BoundDagNonNullTest : BoundDagTest 5284internal sealed partial class BoundDagExplicitNullTest : BoundDagTest 5310internal sealed partial class BoundDagValueTest : BoundDagTest 5339internal sealed partial class BoundDagRelationalTest : BoundDagTest 5370internal abstract partial class BoundDagEvaluation : BoundDagTest
58 references to BoundDagTest
Microsoft.CodeAnalysis.CSharp (58)
Binder\DecisionDagBuilder.cs (37)
256case Tests.One(BoundDagTest d): 921case BoundDagTest d: 1025case BoundDagTest d: 1046BoundDagTest test, 1060BoundDagTest test, 1105BoundDagTest test) 1216BoundDagTest test, 1217BoundDagTest other, 1386BoundDagTest test, 1387BoundDagTest other, 1706string dumpDagTest(BoundDagTest d) 1837public BoundDagTest? SelectedTest; 1896internal BoundDagTest ComputeSelectedTest() 2043BoundDagTest test, 2050public virtual BoundDagTest ComputeSelectedTest() => throw ExceptionUtilities.Unreachable(); 2056public abstract string Dump(Func<BoundDagTest, string> dump); 2064public override string Dump(Func<BoundDagTest, string> dump) => "TRUE"; 2067BoundDagTest test, 2085public override string Dump(Func<BoundDagTest, string> dump) => "FALSE"; 2088BoundDagTest test, 2101/// A single test to be performed, described by a <see cref="BoundDagTest"/>. 2107public readonly BoundDagTest Test; 2108public One(BoundDagTest test) => this.Test = test; 2109public void Deconstruct(out BoundDagTest Test) => Test = this.Test; 2112BoundDagTest test, 2121BoundDagTest other = this.Test; 2182public override BoundDagTest ComputeSelectedTest() => this.Test; 2184public override string Dump(Func<BoundDagTest, string> dump) => dump(this.Test); 2189BoundDagTest test = Test; 2275public override BoundDagTest ComputeSelectedTest() => Negated.ComputeSelectedTest(); 2276public override string Dump(Func<BoundDagTest, string> dump) => $"Not ({Negated.Dump(dump)})"; 2279BoundDagTest test, 2306BoundDagTest test, 2400public override BoundDagTest ComputeSelectedTest() 2426public override string Dump(Func<BoundDagTest, string> dump) 2439public override BoundDagTest ComputeSelectedTest() => this.RemainingTests[0].ComputeSelectedTest(); 2480public override string Dump(Func<BoundDagTest, string> dump)
Binder\PatternExplainer.cs (7)
245out Dictionary<BoundDagTemp, ArrayBuilder<(BoundDagTest, bool)>> constraints, 248constraints = new Dictionary<BoundDagTemp, ArrayBuilder<(BoundDagTest, bool)>>(); 259BoundDagTest test = t.Test; 270constraints.Add(temp, constraintBuilder = new ArrayBuilder<(BoundDagTest, bool)>()); 293Dictionary<BoundDagTemp, ArrayBuilder<(BoundDagTest test, bool sense)>> constraintMap, 596IValueSet computeRemainingValues(IValueSetFactory fac, ImmutableArray<(BoundDagTest test, bool sense)> constraints) 633static bool isNotNullTest((BoundDagTest test, bool sense) constraint)
BoundTree\BoundDagTest.cs (2)
16public override bool Equals([NotNullWhen(true)] object? obj) => this.Equals(obj as BoundDagTest); 18private bool Equals(BoundDagTest? other)
BoundTree\BoundDecisionDag.cs (1)
174bool? knownResult(BoundDagTest choice)
FlowAnalysis\NullableWalker_Patterns.cs (1)
552var test = p.Test;
Generated\BoundNodes.xml.Generated.cs (5)
5077public BoundTestDecisionDagNode(SyntaxNode syntax, BoundDagTest test, BoundDecisionDagNode whenTrue, BoundDecisionDagNode whenFalse, bool hasErrors = false) 5090public BoundDagTest Test { get; } 5097public BoundTestDecisionDagNode Update(BoundDagTest test, BoundDecisionDagNode whenTrue, BoundDecisionDagNode whenFalse) 11554BoundDagTest test = (BoundDagTest)this.Visit(node.Test);
Lowering\LocalRewriter\LocalRewriter.DecisionDagRewriter.cs (2)
529var t1 = test1.Test; 530var t2 = test2.Test;
Lowering\LocalRewriter\LocalRewriter.PatternLocalRewriter.cs (2)
336protected BoundExpression LowerTest(BoundDagTest test) 459BoundDagTest test,
Lowering\LocalRewriter\LocalRewriter_IsPatternOperator.cs (1)
191private void LowerOneTest(BoundDagTest test, bool invert = false)