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