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