11 references to DocumentationCommentListType
Microsoft.CodeAnalysis.Features (11)
DocumentationComments\AbstractDocumentationCommentFormattingService.cs (11)
59private readonly List<(DocumentationCommentListType type, int index, bool renderedItem)> _listStack = []; 124public void PushList(DocumentationCommentListType listType) 249case DocumentationCommentListType.Bullet: 253case DocumentationCommentListType.Number: 257case DocumentationCommentListType.Table: 258case DocumentationCommentListType.None: 391var listType = rawListType switch 393"table" => DocumentationCommentListType.Table, 394"number" => DocumentationCommentListType.Number, 395"bullet" => DocumentationCommentListType.Bullet, 396_ => DocumentationCommentListType.None,