2 overrides of ReturnType
Microsoft.CodeAnalysis.VisualBasic (2)
Semantics\OverloadResolution.vb (2)
177Public Overrides ReadOnly Property ReturnType As TypeSymbol 394Public Overrides ReadOnly Property ReturnType As TypeSymbol
10 references to ReturnType
Microsoft.CodeAnalysis.VisualBasic (10)
Binding\Binder_Invocation.vb (1)
835Dim returnType = candidate.ReturnType
Binding\Binder_Operators.vb (6)
308OverloadResolution.IsValidInLiftedSignature(bestCandidate.ReturnType)) Then 681operatorType = bitwiseCandidate.ReturnType 733Debug.Assert(checkCandidate.ReturnType.IsBooleanType() OrElse checkCandidate.ReturnType.IsNullableOfBoolean()) 781test = ApplyNullableIsTrueOperator(testOp, checkCandidate.ReturnType.GetNullableUnderlyingTypeOrSelf()) 1171OverloadResolution.IsValidInLiftedSignature(bestCandidate.ReturnType)) Then
Binding\Binder_Statements.vb (1)
3299(Not isRelational AndAlso Not bestCandidate.ReturnType.IsSameTypeIgnoringAll(left.Type)) Then
Semantics\OverloadResolution.vb (2)
1595Dim leftReturnsVoid As Boolean = left.Candidate.ReturnType.IsVoidType() 1596Dim rightReturnsVoid As Boolean = right.Candidate.ReturnType.IsVoidType()