1 write to Options
Microsoft.CodeAnalysis.Workspaces (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Formatting\Engine\AbstractTriviaDataFactory.cs (1)
30Options = options;
6 references to Options
Microsoft.CodeAnalysis.Workspaces (6)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Formatting\Engine\AbstractTriviaDataFactory.cs (6)
93return new Whitespace(this.Options, space, elastic: true); 102return new Whitespace(this.Options, space, elastic: false); 119indentation % Options.IndentationSize == 0; 123var indentationLevel = indentation / Options.IndentationSize; 132? new Whitespace(this.Options, lineBreaks, indentation, elastic) 133: new ModifiedWhitespace(this.Options, lineBreaks, indentation, elastic);