2 overrides of IsAttributeArgumentBinding
Microsoft.CodeAnalysis.CSharp (2)
Binder\Semantics\Conversions\Conversions.cs (1)
526
protected override bool
IsAttributeArgumentBinding
=> _binder.InAttributeArgument;
Binder\Semantics\Conversions\TypeConversions.cs (1)
68
protected override bool
IsAttributeArgumentBinding
=> false;
1 reference to IsAttributeArgumentBinding
Microsoft.CodeAnalysis.CSharp (1)
Binder\Semantics\Conversions\ConversionsBase.cs (1)
1145
if (!
IsAttributeArgumentBinding
&& !IsParameterDefaultValueBinding && // These checks prevent cycles caused by attribute binding when HasInlineArrayAttribute check triggers that.