21 references to Nullable
Microsoft.CodeAnalysis.VisualBasic (21)
Binding\Binder_Conversions.vb (1)
1640
Dim isNullableTupleConversion = (convKind And ConversionKind.
Nullable
) <> 0
BoundTree\BoundConversion.vb (1)
70
If (ConversionKind And VisualBasic.ConversionKind.
Nullable
) <> 0 Then
Lowering\ExpressionLambdaRewriter\ExpressionLambdaRewriter_BinaryOperator.vb (1)
552
If ((conversion.ConversionKind And ConversionKind.
Nullable
) <> 0) AndAlso Not conversion.ExplicitCastInCode AndAlso Not operandType.IsNullableType Then
Lowering\ExpressionLambdaRewriter\ExpressionLambdaRewriter_ConditionalExpresion.vb (2)
243
Dim newConversionKind As ConversionKind = conversion.ConversionKind And Not ConversionKind.
Nullable
246
newConversionKind = newConversionKind Or ConversionKind.
Nullable
Lowering\ExpressionLambdaRewriter\ExpressionLambdaRewriter_Conversion.vb (1)
99
Return CreateUserDefinedConversion(userDefinedConversion, typeTo, (conversion And ConversionKind.
Nullable
) <> 0, isChecked)
Lowering\LocalRewriter\LocalRewriter_Conversion.vb (3)
45
If (node.ConversionKind And ConversionKind.
Nullable
) <> 0 Then
116
ElseIf (node.ConversionKind And (ConversionKind.Tuple Or ConversionKind.
Nullable
)) = ConversionKind.Tuple Then
464
node.ConversionKind And (Not ConversionKind.
Nullable
),
Lowering\LocalRewriter\LocalRewriter_NullableHelpers.vb (2)
230
Return (conversion.ConversionKind And (ConversionKind.Widening Or ConversionKind.
Nullable
Or ConversionKind.UserDefined)) = (ConversionKind.Widening Or ConversionKind.
Nullable
) AndAlso
Semantics\Conversions.vb (6)
162
Return (_convKind And ConversionKind.
Nullable
) <> 0
322
WideningNullable = [Widening] Or
Nullable
323
NarrowingNullable = [Narrowing] Or
Nullable
405
''' Can be combined with <see cref="ConversionKind.
Nullable
"/> to indicate that the underlying value conversion is a predefined tuple conversion
1421
Return (conv.Key And (Not (ConversionKind.UserDefined Or ConversionKind.
Nullable
Or ConversionKind.Tuple))) Or ConversionKind.Lambda Or conversionKindExpressionTree
1515
Not ((convToNullableOfBoolean.Key And (ConversionKind.UserDefined Or ConversionKind.
Nullable
)) =
Semantics\Operators.vb (2)
2006
ConversionKind.
Nullable
, bestMatch)
2014
ConversionKind.
Nullable
, bestMatch)
Semantics\OverloadResolution.vb (2)
2410
If (conv.Key And ConversionKind.
Nullable
) = 0 Then
2540
Return (conv And ConversionKind.
Nullable
) <> 0 AndAlso