11 references to DocumentationCommentListType
Microsoft.CodeAnalysis.Features (11)
DocumentationComments\AbstractDocumentationCommentFormattingService.cs (11)
60private readonly List<(DocumentationCommentListType type, int index, bool renderedItem)> _listStack = []; 120public void PushList(DocumentationCommentListType listType) 245case DocumentationCommentListType.Bullet: 249case DocumentationCommentListType.Number: 253case DocumentationCommentListType.Table: 254case DocumentationCommentListType.None: 408var listType = rawListType switch 410"table" => DocumentationCommentListType.Table, 411"number" => DocumentationCommentListType.Number, 412"bullet" => DocumentationCommentListType.Bullet, 413_ => DocumentationCommentListType.None,