14 references to IsBoolean
Microsoft.CodeAnalysis (2)
ConstantValue.cs (1)
858
return IsIntegral ||
IsBoolean
|| IsChar;
Operations\ControlFlowGraphBuilder.cs (1)
284
if (current.BranchValue.GetConstantValue() is {
IsBoolean
: true, BooleanValue: bool constant })
Microsoft.CodeAnalysis.CSharp (12)
CodeGen\EmitOperators.cs (1)
407
else if (constant.
IsBoolean
)
FlowAnalysis\AbstractFlowPass.cs (5)
1082
case BoundConstantPattern { ConstantValue: {
IsBoolean
: true, BooleanValue: var boolValue } }:
1113
case BoundConstantPattern { ConstantValue: {
IsBoolean
: false } }:
1722
if (node.ConstantValueOpt is {
IsBoolean
: true, BooleanValue: bool booleanValue }
2733
else if (IsConditionalState && binary.Right.ConstantValueOpt is {
IsBoolean
: true } rightConstant)
2745
else if (binary.Left.ConstantValueOpt is {
IsBoolean
: true } leftConstant)
FlowAnalysis\NullableWalker.cs (6)
1119
if (returnStatement.ExpressionOpt is { ConstantValueOpt: {
IsBoolean
: true, BooleanValue: bool value } })
1284
if (returnStatement.ExpressionOpt is { ConstantValueOpt: {
IsBoolean
: true, BooleanValue: bool value } })
1305
else if (returnStatement.ExpressionOpt is { ConstantValueOpt: {
IsBoolean
: true, BooleanValue: bool value } })
5523
else if (isEquals(binary) && otherOperand.ConstantValueOpt is {
IsBoolean
: true, BooleanValue: var boolValue })
5570
if (IsConditionalState && binary.Right.ConstantValueOpt is {
IsBoolean
: true } rightConstant)
5581
else if (binary.Left.ConstantValueOpt is {
IsBoolean
: true } leftConstant)