1 instantiation of False
Microsoft.CodeAnalysis.CSharp (1)
Binder\DecisionDagBuilder.cs (1)
2500public static readonly False Instance = new False();
19 references to False
Microsoft.CodeAnalysis.CSharp (19)
Binder\DecisionDagBuilder.cs (19)
242case Tests.False _: 551tests.Add(Tests.False.Instance); 771tests.Add(Tests.False.Instance); 1223RoslynDebug.Assert(!(first.RemainingTests is Tests.False)); 1424if (remainingTests is Tests.False) 2291public bool IsImpossible => RemainingTests is Tests.False; 2500public static readonly False Instance = new False(); 2562whenTrue = trueDecisionImpliesTrueOther ? Tests.True.Instance : trueDecisionPermitsTrueOther ? this : (Tests)Tests.False.Instance; 2563whenFalse = falseDecisionImpliesTrueOther ? Tests.True.Instance : falseDecisionPermitsTrueOther ? this : (Tests)Tests.False.Instance; 2615return False.Instance; 2995Tests.True _ => Tests.False.Instance, 2996Tests.False _ => Tests.True.Instance, 3582if (t1 is False) return t1; 3583Debug.Assert(t2 is not (True or False)); 3598case False f: 3664if (t1 is False) return t2; 3665Debug.Assert(t2 is not (True or False)); 3677case False _: 36930 => False.Instance,