2 overrides of CheckOverflow
Microsoft.CodeAnalysis.VisualBasic (2)
Binding\BackstopBinder.vb (1)
175
Public Overrides ReadOnly Property
CheckOverflow
As Boolean
Binding\SourceModuleBinder.vb (1)
65
Public Overrides ReadOnly Property
CheckOverflow
As Boolean
20 references to CheckOverflow
Microsoft.CodeAnalysis.VisualBasic (20)
Binding\Binder.vb (1)
755
Return m_containingBinder.
CheckOverflow
Binding\Binder_Conversions.vb (8)
344
checked:=
CheckOverflow
,
455
argument = New BoundConversion(tree, argument, ConversionKind.Identity,
CheckOverflow
, isExplicit, targetType)
511
Return New BoundConversion(tree, argument, convKind.Key,
CheckOverflow
, isExplicit, targetType, hasErrors:=True)
595
Return New BoundConversion(tree, argument, convKind.Key And (Not ConversionKind.UserDefined),
CheckOverflow
, isExplicit, targetType, hasErrors:=True)
604
Return New BoundConversion(tree, argument, convKind.Key,
CheckOverflow
, isExplicit, targetType, hasErrors:=True)
1045
Debug.Assert(Not integerOverflow OrElse Not
CheckOverflow
)
1058
Return New BoundConversion(tree, argument, convKind,
CheckOverflow
, isExplicit, constantResult, tupleElements, targetType)
1176
Return New BoundConversion(tree, argument, convKind.Key,
CheckOverflow
, isExplicit, DirectCast(Nothing, ConstantValue), targetType)
Binding\Binder_Delegates.vb (1)
137
boundFirstArgument = New BoundConversion(node, boundFirstArgument, ConversionKind.Identity,
CheckOverflow
, True, delegateType)
Binding\Binder_Expressions.vb (1)
4436
CheckOverflow
,
Binding\Binder_Operators.vb (6)
325
Return New BoundBinaryOperator(node, preliminaryOperatorKind Or BinaryOperatorKind.Error, left, right,
CheckOverflow
, ErrorTypeSymbol.UnknownResultType, hasErrors:=True)
552
left, right,
CheckOverflow
, value, operatorResultType, hasError)
623
Return New BoundUserDefinedBinaryOperator(node, opKind, result,
CheckOverflow
, result.Type)
761
CheckOverflow
,
1181
Return New BoundUnaryOperator(node, preliminaryOperatorKind Or UnaryOperatorKind.Error, operand,
CheckOverflow
, ErrorTypeSymbol.UnknownResultType, HasErrors:=True)
1234
Return New BoundUnaryOperator(node, operatorKind, operand,
CheckOverflow
, constantValue, resultType)
Binding\Binder_Statements.vb (1)
3255
CheckOverflow
,
Semantics\Conversions.vb (2)
1648
ElseIf binder.
CheckOverflow
Then
1688
ElseIf integerOverflow AndAlso binder.
CheckOverflow
Then