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): 947case BoundDagTest d: 1051case BoundDagTest d: 1072BoundDagTest test, 1086BoundDagTest test, 1131BoundDagTest test) 1242BoundDagTest test, 1243BoundDagTest other, 1412BoundDagTest test, 1413BoundDagTest other, 1732string dumpDagTest(BoundDagTest d) 1863public BoundDagTest? SelectedTest; 1922internal BoundDagTest ComputeSelectedTest() 2069BoundDagTest test, 2076public virtual BoundDagTest ComputeSelectedTest() => throw ExceptionUtilities.Unreachable(); 2082public abstract string Dump(Func<BoundDagTest, string> dump); 2090public override string Dump(Func<BoundDagTest, string> dump) => "TRUE"; 2093BoundDagTest test, 2111public override string Dump(Func<BoundDagTest, string> dump) => "FALSE"; 2114BoundDagTest test, 2127/// A single test to be performed, described by a <see cref="BoundDagTest"/>. 2133public readonly BoundDagTest Test; 2134public One(BoundDagTest test) => this.Test = test; 2135public void Deconstruct(out BoundDagTest Test) => Test = this.Test; 2138BoundDagTest test, 2147BoundDagTest other = this.Test; 2208public override BoundDagTest ComputeSelectedTest() => this.Test; 2210public override string Dump(Func<BoundDagTest, string> dump) => dump(this.Test); 2215BoundDagTest test = Test; 2301public override BoundDagTest ComputeSelectedTest() => Negated.ComputeSelectedTest(); 2302public override string Dump(Func<BoundDagTest, string> dump) => $"Not ({Negated.Dump(dump)})"; 2305BoundDagTest test, 2332BoundDagTest test, 2426public override BoundDagTest ComputeSelectedTest() 2452public override string Dump(Func<BoundDagTest, string> dump) 2465public override BoundDagTest ComputeSelectedTest() => this.RemainingTests[0].ComputeSelectedTest(); 2506public 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)
590var 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) 11556BoundDagTest 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)