1 instantiation of AnchorIndentationOperation
Microsoft.CodeAnalysis.CodeStyle (1)
FormattingOperations.cs (1)
37
=>
new
(anchorToken, endToken, textSpan);
26 references to AnchorIndentationOperation
Microsoft.CodeAnalysis.CodeStyle (18)
AbstractFormatEngine.cs (2)
172
List<
AnchorIndentationOperation
> anchorIndentationOperations;
175
anchorIndentationOperations = AddOperations<
AnchorIndentationOperation
>(nodeIterator, _formattingRules.AddAnchorIndentationOperations, cancellationToken);
AbstractFormattingRule.cs (1)
29
public virtual void AddAnchorIndentationOperations(List<
AnchorIndentationOperation
> list, SyntaxNode node, in NextAnchorIndentationOperationAction nextOperation)
ChainedFormattingRules.cs (1)
52
public void AddAnchorIndentationOperations(List<
AnchorIndentationOperation
> list, SyntaxNode currentNode)
CompatAbstractFormattingRule.cs (2)
24
public sealed override void AddAnchorIndentationOperations(List<
AnchorIndentationOperation
> list, SyntaxNode node, in NextAnchorIndentationOperationAction nextOperation)
77
public virtual void AddAnchorIndentationOperationsSlow(List<
AnchorIndentationOperation
> list, SyntaxNode node, ref NextAnchorIndentationOperationAction nextOperation)
FormattingContext.AnchorData.cs (2)
18
private readonly
AnchorIndentationOperation
_operation;
20
public AnchorData(
AnchorIndentationOperation
operation, SyntaxToken anchorToken, int originalColumn)
FormattingContext.cs (1)
400
public void AddAnchorIndentationOperation(
AnchorIndentationOperation
operation)
FormattingOperations.cs (4)
30
public static
AnchorIndentationOperation
CreateAnchorIndentationOperation(SyntaxToken anchorToken, SyntaxToken endToken)
36
public static
AnchorIndentationOperation
CreateAnchorIndentationOperation(SyntaxToken anchorToken, SyntaxToken endToken, TextSpan textSpan)
159
internal static IEnumerable<
AnchorIndentationOperation
> GetAnchorIndentationOperations(IEnumerable<AbstractFormattingRule> formattingRules, SyntaxNode node, SyntaxFormattingOptions options)
163
var list = new List<
AnchorIndentationOperation
>();
NextAnchorIndentationOperationAction.cs (2)
17
private readonly List<
AnchorIndentationOperation
> _list;
23
List<
AnchorIndentationOperation
> list)
NodeOperations.cs (3)
20
public List<
AnchorIndentationOperation
> AnchorIndentationOperations { get; }
22
public NodeOperations(List<IndentBlockOperation> indentBlockOperation, List<SuppressOperation> suppressOperation, List<
AnchorIndentationOperation
> anchorIndentationOperations, List<AlignTokensOperation> alignmentOperation)
35
this.AnchorIndentationOperations = new List<
AnchorIndentationOperation
>();
Microsoft.CodeAnalysis.CSharp.CodeStyle (5)
AnchorIndentationFormattingRule.cs (2)
15
public override void AddAnchorIndentationOperations(List<
AnchorIndentationOperation
> list, SyntaxNode node, in NextAnchorIndentationOperationAction nextOperation)
89
private static void AddAnchorIndentationOperation(List<
AnchorIndentationOperation
> list, SyntaxNode node)
BaseFormattingRule.cs (1)
135
protected static void AddAnchorIndentationOperation(List<
AnchorIndentationOperation
> list, SyntaxToken anchorToken, SyntaxToken endToken)
DefaultOperationProvider.cs (1)
26
public override void AddAnchorIndentationOperations(List<
AnchorIndentationOperation
> list, SyntaxNode node, in NextAnchorIndentationOperationAction nextOperation)
QueryExpressionFormattingRule.cs (1)
109
public override void AddAnchorIndentationOperations(List<
AnchorIndentationOperation
> list, SyntaxNode node, in NextAnchorIndentationOperationAction nextOperation)
Microsoft.CodeAnalysis.VisualBasic.CodeStyle (3)
BaseFormattingRule.vb (1)
83
Protected Shared Sub AddAnchorIndentationOperation(operations As List(Of
AnchorIndentationOperation
), startToken As SyntaxToken, endToken As SyntaxToken)
DefaultOperationProvider.vb (1)
42
Public Overrides Sub AddAnchorIndentationOperationsSlow(operations As List(Of
AnchorIndentationOperation
), node As SyntaxNode, ByRef nextAction As NextAnchorIndentationOperationAction)
NodeBasedFormattingRule.vb (1)
15
Public Overrides Sub AddAnchorIndentationOperationsSlow(operations As List(Of
AnchorIndentationOperation
),