Base:
property
AttributeLists
Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax.AttributeLists
5 overrides of AttributeLists
Microsoft.CodeAnalysis.CSharp (5)
Syntax.xml.Syntax.Generated.cs (5)
12293
public override SyntaxList<AttributeListSyntax>
AttributeLists
=> new SyntaxList<AttributeListSyntax>(GetRed(ref this.attributeLists, 0));
12441
public override SyntaxList<AttributeListSyntax>
AttributeLists
=> new SyntaxList<AttributeListSyntax>(GetRed(ref this.attributeLists, 0));
12587
public override SyntaxList<AttributeListSyntax>
AttributeLists
=> new SyntaxList<AttributeListSyntax>(GetRed(ref this.attributeLists, 0));
12732
public override SyntaxList<AttributeListSyntax>
AttributeLists
=> new SyntaxList<AttributeListSyntax>(GetRed(ref this.attributeLists, 0));
12906
public override SyntaxList<AttributeListSyntax>
AttributeLists
=> new SyntaxList<AttributeListSyntax>(GetRed(ref this.attributeLists, 0));
9 references to AttributeLists
Microsoft.CodeAnalysis.CSharp (1)
src\Compilers\CSharp\CSharpAnalyzerDriver\CSharpDeclarationComputer.cs (1)
323
AddAttributes(t.
AttributeLists
, codeBlocks);
Microsoft.CodeAnalysis.CSharp.Features (1)
src\Compilers\CSharp\CSharpAnalyzerDriver\CSharpDeclarationComputer.cs (1)
323
AddAttributes(t.
AttributeLists
, codeBlocks);
Microsoft.VisualStudio.LanguageServices.CSharp (7)
CodeModel\CSharpCodeModelService.CodeModelEventCollector.cs (2)
453
oldMethod.
AttributeLists
.AsReadOnlyList(),
454
newMethod.
AttributeLists
.AsReadOnlyList(),
CodeModel\CSharpCodeModelService.cs (1)
313
return GetAttributeNodes(baseMethod.
AttributeLists
);
CodeModel\CSharpCodeModelService.NodeLocator.cs (3)
371
if (node.
AttributeLists
.Count == 0)
936
if (node.
AttributeLists
.Count == 0)
941
endPosition = node.
AttributeLists
.Last().GetLastToken().Span.End;
CodeModel\SyntaxNodeExtensions.cs (1)
28
attributeLists = baseMethod.
AttributeLists
;