18 references to IndentationOperations
Microsoft.CodeAnalysis.Workspaces (18)
AbstractTriviaFormatter.cs (5)
575LineColumnRule.IndentationOperations.Absolute => Math.Max(0, rule.Indentation), 576LineColumnRule.IndentationOperations.Default => this.Context.GetBaseIndentation(trivia2.RawKind == 0 ? this.EndPosition : trivia2.SpanStart), 577LineColumnRule.IndentationOperations.Given => (trivia2.RawKind == 0) ? this.Spaces : Math.Max(0, _indentation), 578LineColumnRule.IndentationOperations.Follow => Math.Max(0, lineColumnBeforeTrivia1.Column), 579LineColumnRule.IndentationOperations.Preserve => existingWhitespaceBetween.Spaces,
LineColumnRule.cs (13)
11public readonly IndentationOperations IndentationOperation; 20IndentationOperations indentationOperation, 33public LineColumnRule With(int? lines = null, int? spaces = null, int? indentation = null, LineOperations? lineOperation = null, SpaceOperations? spaceOperation = null, IndentationOperations? indentationOperation = null) 46IndentationOperations.Preserve, 55IndentationOperations.Given, 64IndentationOperations.Default, 73IndentationOperations.Given, 82IndentationOperations.Absolute, 91IndentationOperations.Follow, 100IndentationOperations.Preserve, 109IndentationOperations.Default, 118IndentationOperations.Default, 127IndentationOperations.Follow,