Base:
property
AttributeLists
Microsoft.CodeAnalysis.CSharp.Syntax.MemberDeclarationSyntax.AttributeLists
3 overrides of AttributeLists
Microsoft.CodeAnalysis.CSharp (3)
Syntax.xml.Syntax.Generated.cs (3)
13062public override SyntaxList<AttributeListSyntax> AttributeLists => new SyntaxList<AttributeListSyntax>(GetRed(ref this.attributeLists, 0)); 13222public override SyntaxList<AttributeListSyntax> AttributeLists => new SyntaxList<AttributeListSyntax>(GetRed(ref this.attributeLists, 0)); 13334public override SyntaxList<AttributeListSyntax> AttributeLists => new SyntaxList<AttributeListSyntax>(GetRed(ref this.attributeLists, 0));
9 references to AttributeLists
Microsoft.CodeAnalysis.CSharp (2)
Symbols\Source\SourcePropertySymbol.cs (2)
140syntax.AttributeLists, 218return ((BasePropertyDeclarationSyntax)this.CSharpSyntaxNode).AttributeLists;
Microsoft.VisualStudio.LanguageServices.CSharp (7)
CodeModel\CSharpCodeModelService.CodeModelEventCollector.cs (2)
329oldProperty.AttributeLists.AsReadOnlyList(), 330newProperty.AttributeLists.AsReadOnlyList(),
CodeModel\CSharpCodeModelService.cs (1)
317return GetAttributeNodes(baseProperty.AttributeLists);
CodeModel\CSharpCodeModelService.NodeLocator.cs (3)
457if (node.AttributeLists.Count == 0) 1010if (node.AttributeLists.Count == 0) 1015endPosition = node.AttributeLists.Last().Span.End;
CodeModel\SyntaxNodeExtensions.cs (1)
33attributeLists = baseProperty.AttributeLists;