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)
1502
public override bool
HasExplicitlyTypedParameterList
{ get { return !_parameterTypesWithAnnotations.IsDefault; } }
2 references to HasExplicitlyTypedParameterList
Microsoft.CodeAnalysis.CSharp (2)
BoundTree\UnboundLambda.cs (2)
481
public bool HasExplicitlyTypedParameterList => Data.
HasExplicitlyTypedParameterList
;
722
if (!
HasExplicitlyTypedParameterList
)