1 write to Options
Microsoft.CodeAnalysis.CodeStyle (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Formatting\Engine\AbstractTriviaDataFactory.cs (1)
34Options = options;
6 references to Options
Microsoft.CodeAnalysis.CodeStyle (6)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\Formatting\Engine\AbstractTriviaDataFactory.cs (6)
97return new Whitespace(this.Options, space, elastic: true); 106return new Whitespace(this.Options, space, elastic: false); 123indentation % Options.IndentationSize == 0; 127var indentationLevel = indentation / Options.IndentationSize; 136? new Whitespace(this.Options, lineBreaks, indentation, elastic) 137: new ModifiedWhitespace(this.Options, lineBreaks, indentation, elastic);