13 references to FormattingBlockKind
Microsoft.CodeAnalysis.Razor.Workspaces (13)
Formatting\FormattingVisitor.cs (13)
23private FormattingBlockKind _currentBlockKind; 33_currentBlockKind = FormattingBlockKind.Markup; 61(_currentBlockKind == FormattingBlockKind.Directive && node.Parent?.Parent is RazorDirectiveBodySyntax)) 540=> Block(FormattingBlockKind.Comment); 543=> Block(FormattingBlockKind.Directive); 546=> Block(FormattingBlockKind.Expression); 549=> Block(FormattingBlockKind.HtmlComment); 552=> Block(FormattingBlockKind.Markup); 555=> Block(FormattingBlockKind.Statement); 558=> Block(FormattingBlockKind.Tag); 561=> Block(FormattingBlockKind.Template); 563private BlockSaver Block(FormattingBlockKind kind) 574private readonly FormattingBlockKind _previousKind = visitor._currentBlockKind;