4 instantiations of BaseIndentationFormattingRule
Microsoft.CodeAnalysis.EditorFeatures.Test.Utilities (1)
Workspaces\TestFormattingRuleFactoryServiceFactory.cs (1)
51return new BaseIndentationFormattingRule(document.Root, TextSpan, BaseIndentation + 4);
Microsoft.VisualStudio.LanguageServices (3)
Venus\ContainedDocument.cs (3)
844return new BaseIndentationFormattingRule(root, TextSpan.FromBounds(visibleSpan.Start, end), baseIndentation, _vbHelperFormattingRule); 854return new BaseIndentationFormattingRule(root, TextSpan.FromBounds(visibleSpan.Start, end), baseIndentation, _vbHelperFormattingRule); 872return new BaseIndentationFormattingRule(root, span, indentation, _vbHelperFormattingRule);
2 references to BaseIndentationFormattingRule
Microsoft.VisualStudio.LanguageServices (2)
Venus\ContainedDocument.cs (2)
787var rule = GetBaseIndentationRule(parsedDocument.Root, parsedDocument.Text, spans, spanIndex); 827public BaseIndentationFormattingRule GetBaseIndentationRule(SyntaxNode root, SourceText text, List<TextSpan> spans, int spanIndex)