11 references to NullableOf
Microsoft.CodeAnalysis.VisualBasic (11)
Lowering\ExpressionLambdaRewriter\ExpressionLambdaRewriter_BinaryOperator.vb (7)
245
Dim newType As TypeSymbol = If(operandIsNullable, Me._factory.
NullableOf
(operandUnderlyingType), operandUnderlyingType)
255
Dim newType As TypeSymbol = If(operandIsNullable, Me._factory.
NullableOf
(Me.Int32Type), Me.Int32Type)
379
result = Convert(result, If(resultTypeIsNullable, Me._factory.
NullableOf
(resultUnderlyingType), resultUnderlyingType), isChecked)
398
loweredOperand = Convert(loweredOperand, If(isNullable, Me._factory.
NullableOf
(underlyingType), underlyingType), False)
403
loweredOperand = Convert(loweredOperand, If(isNullable, Me._factory.
NullableOf
(Me.Int32Type), Me.Int32Type), checked)
452
result = Convert(result, Me._factory.
NullableOf
(Me.Int32Type), isChecked)
473
Dim int32Nullable As TypeSymbol = If(isNullable, Me._factory.
NullableOf
(Me.Int32Type), Nothing)
Lowering\ExpressionLambdaRewriter\ExpressionLambdaRewriter_Conversion.vb (3)
212
helperOperandType = Me._factory.
NullableOf
(helperOperandType)
217
helperReturnType = Me._factory.
NullableOf
(helperReturnType)
284
typeBeforeNegation = Me._factory.
NullableOf
(typeBeforeNegation)
Lowering\ExpressionLambdaRewriter\ExpressionLambdaRewriter_UnaryOperator.vb (1)
88
result = Convert(result, If(origArgTypeIsNullable, Me._factory.
NullableOf
(origArgUnderlyingType), origArgUnderlyingType), isChecked)