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: 401var listType = rawListType switch 403"table" => DocumentationCommentListType.Table, 404"number" => DocumentationCommentListType.Number, 405"bullet" => DocumentationCommentListType.Bullet, 406_ => DocumentationCommentListType.None,