5 references to CreateIndentBlockOperation
Microsoft.CodeAnalysis.CSharp.Workspaces (3)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Formatting\Rules\BaseFormattingRule.cs (3)
29
list.Add(FormattingOperations.
CreateIndentBlockOperation
(startToken, endToken, textSpan, indentationDelta: -1, option: option));
40
list.Add(FormattingOperations.
CreateIndentBlockOperation
(
85
list.Add(FormattingOperations.
CreateIndentBlockOperation
(startToken, endToken, textSpan, indentationDelta: 1, option: option));
Microsoft.CodeAnalysis.Workspaces (2)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Formatting\Rules\BaseIndentationFormattingRule.cs (1)
124
return FormattingOperations.
CreateIndentBlockOperation
(operation.StartToken, operation.EndToken, AdjustTextSpan(operation.TextSpan), operation.IndentationDeltaOrPosition, operation.Option);
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Formatting\Rules\Operations\FormattingOperations.cs (1)
56
return
CreateIndentBlockOperation
(startToken, endToken, span, indentationDelta, option);