6 types derived from BoundDagTest
Microsoft.CodeAnalysis.CSharp (6)
Generated\BoundNodes.xml.Generated.cs (6)
5225internal sealed partial class BoundDagTypeTest : BoundDagTest 5254internal sealed partial class BoundDagNonNullTest : BoundDagTest 5282internal sealed partial class BoundDagExplicitNullTest : BoundDagTest 5308internal sealed partial class BoundDagValueTest : BoundDagTest 5337internal sealed partial class BoundDagRelationalTest : BoundDagTest 5368internal abstract partial class BoundDagEvaluation : BoundDagTest
58 references to BoundDagTest
Microsoft.CodeAnalysis.CSharp (58)
Binder\DecisionDagBuilder.cs (37)
256case Tests.One(BoundDagTest d): 949case BoundDagTest d: 1053case BoundDagTest d: 1074BoundDagTest test, 1088BoundDagTest test, 1133BoundDagTest test) 1244BoundDagTest test, 1245BoundDagTest other, 1414BoundDagTest test, 1415BoundDagTest other, 1734string dumpDagTest(BoundDagTest d) 1865public BoundDagTest? SelectedTest; 1924internal BoundDagTest ComputeSelectedTest() 2071BoundDagTest test, 2078public virtual BoundDagTest ComputeSelectedTest() => throw ExceptionUtilities.Unreachable(); 2084public abstract string Dump(Func<BoundDagTest, string> dump); 2092public override string Dump(Func<BoundDagTest, string> dump) => "TRUE"; 2095BoundDagTest test, 2113public override string Dump(Func<BoundDagTest, string> dump) => "FALSE"; 2116BoundDagTest test, 2129/// A single test to be performed, described by a <see cref="BoundDagTest"/>. 2135public readonly BoundDagTest Test; 2136public One(BoundDagTest test) => this.Test = test; 2137public void Deconstruct(out BoundDagTest Test) => Test = this.Test; 2140BoundDagTest test, 2149BoundDagTest other = this.Test; 2210public override BoundDagTest ComputeSelectedTest() => this.Test; 2212public override string Dump(Func<BoundDagTest, string> dump) => dump(this.Test); 2217BoundDagTest test = Test; 2303public override BoundDagTest ComputeSelectedTest() => Negated.ComputeSelectedTest(); 2304public override string Dump(Func<BoundDagTest, string> dump) => $"Not ({Negated.Dump(dump)})"; 2307BoundDagTest test, 2334BoundDagTest test, 2428public override BoundDagTest ComputeSelectedTest() 2454public override string Dump(Func<BoundDagTest, string> dump) 2467public override BoundDagTest ComputeSelectedTest() => this.RemainingTests[0].ComputeSelectedTest(); 2508public 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)
592var test = p.Test;
Generated\BoundNodes.xml.Generated.cs (5)
5075public BoundTestDecisionDagNode(SyntaxNode syntax, BoundDagTest test, BoundDecisionDagNode whenTrue, BoundDecisionDagNode whenFalse, bool hasErrors = false) 5088public BoundDagTest Test { get; } 5095public BoundTestDecisionDagNode Update(BoundDagTest test, BoundDecisionDagNode whenTrue, BoundDecisionDagNode whenFalse) 11688BoundDagTest 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)
340protected BoundExpression LowerTest(BoundDagTest test) 463BoundDagTest test,
Lowering\LocalRewriter\LocalRewriter_IsPatternOperator.cs (1)
191private void LowerOneTest(BoundDagTest test, bool invert = false)