22 references to InAttributeArgument
Microsoft.CodeAnalysis.CSharp (22)
Binder\Binder.ValueChecks.cs (1)
538if (!InAttributeArgument)
Binder\Binder_Expressions.cs (8)
46if (InConstructorInitializer || InAttributeArgument) 2125(InParameterDefaultValue || InAttributeArgument || 2268InAttributeArgument || 2318else if (InConstructorInitializer || InAttributeArgument) 6940if (!this.InAttributeArgument && !this.InParameterDefaultValue && type.IsComImport) 8831return !InParameterDefaultValue && !InAttributeArgument && receiver.IsExpressionOfComImportType(); 9398!InAttributeArgument && !InParameterDefaultValue && // These checks prevent cycles caused by attribute binding when HasInlineArrayAttribute check triggers that. 10125bool allowRefOmittedArguments = !InParameterDefaultValue && !InAttributeArgument && receiver.IsExpressionOfComImportType();
Binder\Binder_Invocation.cs (5)
1437if (InAttributeArgument) 1581var containingMember = InAttributeArgument ? attributedMember : ContainingMember() switch 1586Debug.Assert(InAttributeArgument || (attributedMember is null && containingMember is not null)); 1664if (InAttributeArgument && parameterDefaultValue?.IsBad == true) 1728if (InAttributeArgument && parameterType.SpecialType == SpecialType.System_Object)
Binder\Semantics\Conversions\Conversions.cs (2)
133if (_binder.InParameterDefaultValue || _binder.InAttributeArgument) 549protected override bool IsAttributeArgumentBinding => _binder.InAttributeArgument;
Binder\Semantics\OverloadResolution\OverloadResolution.cs (5)
674if (_binder.InAttributeArgument || (_binder.Flags & BinderFlags.InContextualAttributeBinder) != 0) 2219if (!_binder.InAttributeArgument) 2343if (!_binder.InAttributeArgument) 3980if ((options & Options.AllowRefOmittedArguments) != 0 && paramRefKind == RefKind.Ref && argRefKind == RefKind.None && !binder.InAttributeArgument) 4622if (!_binder.InParameterDefaultValue && !_binder.InAttributeArgument
FlowAnalysis\NullableWalker.cs (1)
8295if (!_binder.InAttributeArgument && !_binder.InParameterDefaultValue && // These checks prevent cycles caused by attribute binding when HasInlineArrayAttribute check triggers that.