9 references to AttributeLists
Microsoft.CodeAnalysis.CSharp (1)
src\Compilers\CSharp\CSharpAnalyzerDriver\CSharpDeclarationComputer.cs (1)
293
codeBlocks = codeBlocks.Concat(GetAttributes(t.
AttributeLists
));
Microsoft.CodeAnalysis.CSharp.Features (1)
src\Compilers\CSharp\CSharpAnalyzerDriver\CSharpDeclarationComputer.cs (1)
293
codeBlocks = codeBlocks.Concat(GetAttributes(t.
AttributeLists
));
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
;