2 overrides of HasExplicitlyTypedParameterList
Microsoft.CodeAnalysis.CSharp (2)
Binder\Binder.QueryUnboundLambdaState.cs (1)
45public override bool HasExplicitlyTypedParameterList { get { return false; } }
BoundTree\UnboundLambda.cs (1)
1502public override bool HasExplicitlyTypedParameterList { get { return !_parameterTypesWithAnnotations.IsDefault; } }
2 references to HasExplicitlyTypedParameterList
Microsoft.CodeAnalysis.CSharp (2)
BoundTree\UnboundLambda.cs (2)
481public bool HasExplicitlyTypedParameterList => Data.HasExplicitlyTypedParameterList; 722if (!HasExplicitlyTypedParameterList)