2 overrides of HasExplicitlyTypedParameterList
Microsoft.CodeAnalysis.CSharp (2)
Binder\Binder.QueryUnboundLambdaState.cs (1)
45
public override bool
HasExplicitlyTypedParameterList
{ get { return false; } }
BoundTree\UnboundLambda.cs (1)
1444
public override bool
HasExplicitlyTypedParameterList
{ get { return !_parameterTypesWithAnnotations.IsDefault; } }
3 references to HasExplicitlyTypedParameterList
Microsoft.CodeAnalysis.CSharp (3)
Binder\Binder_Lambda.cs (1)
355
if (data.
HasExplicitlyTypedParameterList
)
BoundTree\UnboundLambda.cs (2)
467
public bool HasExplicitlyTypedParameterList { get { return Data.
HasExplicitlyTypedParameterList
; } }
665
if (!
HasExplicitlyTypedParameterList
)