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