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