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)
1481
public override bool
HasExplicitlyTypedParameterList
{ get { return !_parameterTypesWithAnnotations.IsDefault; } }
3 references to HasExplicitlyTypedParameterList
Microsoft.CodeAnalysis.CSharp (3)
Binder\Binder_Lambda.cs (1)
353
if (data.
HasExplicitlyTypedParameterList
)
BoundTree\UnboundLambda.cs (2)
466
public bool HasExplicitlyTypedParameterList { get { return Data.
HasExplicitlyTypedParameterList
; } }
701
if (!
HasExplicitlyTypedParameterList
)