11 references to AttributeLists
Microsoft.CodeAnalysis.CSharp (2)
src\Compilers\CSharp\CSharpAnalyzerDriver\CSharpDeclarationComputer.cs (1)
188var attributes = GetAttributes(t.AttributeLists);
Symbols\Source\SourceMemberFieldSymbol.cs (1)
415return OneOrMany.Create(GetFieldDeclaration(this.SyntaxNode).AttributeLists);
Microsoft.CodeAnalysis.CSharp.Features (1)
src\Compilers\CSharp\CSharpAnalyzerDriver\CSharpDeclarationComputer.cs (1)
188var attributes = GetAttributes(t.AttributeLists);
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
FindSymbols\CSharpDeclaredSymbolInfoFactoryService.cs (1)
398fieldDeclaration.AttributeLists.Any(),
Microsoft.VisualStudio.LanguageServices.CSharp (7)
CodeModel\CSharpCodeModelService.CodeModelEventCollector.cs (2)
401oldField.AttributeLists.AsReadOnlyList(), 402newField.AttributeLists.AsReadOnlyList(),
CodeModel\CSharpCodeModelService.cs (1)
321return GetAttributeNodes(baseField.AttributeLists);
CodeModel\CSharpCodeModelService.NodeLocator.cs (3)
694if (field.AttributeLists.Count == 0) 1274if (field.AttributeLists.Count == 0) 1279endPosition = field.AttributeLists.Last().GetLastToken().Span.End;
CodeModel\SyntaxNodeExtensions.cs (1)
38attributeLists = baseField.AttributeLists;