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