8 references to IndentationResult
Microsoft.CodeAnalysis.CodeStyle (5)
AbstractIndentation.Indenter.cs (5)
159return new IndentationResult(basePosition: line.Start + offset.Value, offset: 0); 192indentationResult = new IndentationResult(basePosition: LineToBeIndented.Start, offset: offset); 203=> new(this.LineToBeIndented.Start, addedSpaces); 231return new IndentationResult(LineToBeIndented.Start, indentation); 234return new IndentationResult(position, addedSpaces);
Microsoft.CodeAnalysis.CodeStyle.Fixes (1)
AbstractIndentationService.cs (1)
27return new IndentationResult(basePosition: 0, offset: 0);
Microsoft.CodeAnalysis.CSharp.CodeStyle.Fixes (1)
CSharpIndentationService.Indenter.cs (1)
63return new IndentationResult(trivia.FullSpan.Start, 0);
Microsoft.CodeAnalysis.VisualBasic.CodeStyle.Fixes (1)
VisualBasicIndentationService.Indenter.vb (1)
65Return New IndentationResult(trivia.FullSpan.Start, 0)