2 overrides of GetAttributeDeclarations
Microsoft.CodeAnalysis.CSharp (2)
Symbols\Source\LambdaParameterSymbol.cs (1)
50internal override OneOrMany<SyntaxList<AttributeListSyntax>> GetAttributeDeclarations() => OneOrMany.Create(_attributeLists);
Symbols\Synthesized\SynthesizedAccessorValueParameterSymbol.cs (1)
74internal override OneOrMany<SyntaxList<AttributeListSyntax>> GetAttributeDeclarations()
3 references to GetAttributeDeclarations
Microsoft.CodeAnalysis.CSharp (3)
Symbols\Source\SourceComplexParameterSymbol.cs (3)
591var attributeSyntax = this.GetAttributeDeclarations(); 610return BindAttributes(GetAttributeDeclarations(), WithTypeParametersBinderOpt); 1044Debug.Assert(this.GetAttributeDeclarations().Any(attrLists => attrLists.Any(attrList => attrList.Contains(node))));