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