3 writes to ParameterTypes
Microsoft.CodeAnalysis.VisualBasic (3)
BoundTree\UnboundLambda.vb (3)
141
Me.
ParameterTypes
= parameterTypes
154
Me.
ParameterTypes
= ImmutableArray(Of TypeSymbol).Empty
166
Me.
ParameterTypes
= types.AsImmutableOrNull
18 references to ParameterTypes
Microsoft.CodeAnalysis.VisualBasic (18)
Binding\Binder_Lambda.vb (8)
95
Dim minCount As Integer = Math.Min(parameters.Length, targetSignature.
ParameterTypes
.Length)
101
Dim delegateType As TypeSymbol = targetSignature.
ParameterTypes
(i)
123
If parameters.Length <> targetSignature.
ParameterTypes
.Length Then
204
targetForInference = New UnboundLambda.TargetSignature(targetForInference.
ParameterTypes
, targetForInference.ParameterIsByRef,
826
For i As Integer = 0 To Math.Min(target.
ParameterTypes
.Length, commonParameterTypes.Length) - 1
827
BindLambdaForErrorRecoveryInferCommonType(commonParameterTypes(i), target.
ParameterTypes
(i))
836
For i As Integer = 0 To Math.Min(target.
ParameterTypes
.Length, commonParameterTypes.Length) - 1
837
BindLambdaForErrorRecoveryInferCommonType(commonParameterTypes(i), target.
ParameterTypes
(i))
BoundTree\UnboundLambda.vb (6)
181
For Each item In
ParameterTypes
197
If other Is Nothing OrElse other.
ParameterTypes
.Length <> Me.
ParameterTypes
.Length Then
201
For i As Integer = 0 To
ParameterTypes
.Length - 1
202
If Not TypeSymbol.Equals(Me.
ParameterTypes
(i), other.
ParameterTypes
(i), TypeCompareKind.ConsiderEverything) OrElse
Semantics\Conversions.vb (3)
4192
If parameters.Length = 0 AndAlso toMethodSignature.
ParameterTypes
.Length > 0 Then
4195
ElseIf parameters.Length <> toMethodSignature.
ParameterTypes
.Length Then
4205
Dim toParameterType As TypeSymbol = toMethodSignature.
ParameterTypes
(parameterIndex)
Semantics\TypeInference\TypeArgumentInference.vb (1)
2147
Dim boundLambda As BoundLambda = unboundLambda.Bind(New UnboundLambda.TargetSignature(inferenceSignature.
ParameterTypes
,