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
12 references to ReturnType
Microsoft.CodeAnalysis.VisualBasic (12)
Binding\Binder_Invocation.vb (3)
835Dim returnType = candidate.ReturnType 1730commonReturnType = bestCandidates(0).Candidate.ReturnType 1747Dim returnType = bestCandidates(i).Candidate.ReturnType
Binding\Binder_Operators.vb (6)
278OverloadResolution.IsValidInLiftedSignature(bestCandidate.ReturnType)) Then 651operatorType = bitwiseCandidate.ReturnType 703Debug.Assert(checkCandidate.ReturnType.IsBooleanType() OrElse checkCandidate.ReturnType.IsNullableOfBoolean()) 751test = ApplyNullableIsTrueOperator(testOp, checkCandidate.ReturnType.GetNullableUnderlyingTypeOrSelf()) 1141OverloadResolution.IsValidInLiftedSignature(bestCandidate.ReturnType)) Then
Binding\Binder_Statements.vb (1)
3270(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()