1 override of Whitespace
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
CodeGeneration\CSharpSyntaxGenerator.cs (1)
44internal override SyntaxTrivia Whitespace(string text)
8 references to Whitespace
Microsoft.CodeAnalysis.Features (8)
Wrapping\AbstractCodeActionComputer.cs (1)
78SingleWhitespaceTrivia = new SyntaxTriviaList(generator.Whitespace(" "));
Wrapping\BinaryExpression\BinaryExpressionCodeActionComputer.cs (2)
61_indentAndAlignTrivia = new SyntaxTriviaList(generator.Whitespace( 65_smartIndentTrivia = AsyncLazy.Create(async cancellationToken => new SyntaxTriviaList(generator.Whitespace(
Wrapping\ChainedExpression\ChainedExpressionCodeActionComputer.cs (2)
84_firstPeriodIndentationTrivia = new SyntaxTriviaList(generator.Whitespace( 87_smartIndentTrivia = AsyncLazy.Create(async cancellationToken => new SyntaxTriviaList(generator.Whitespace(
Wrapping\SeparatedSyntaxList\SeparatedSyntaxListCodeActionComputer.cs (3)
90_afterOpenTokenIndentationTrivia = generator.Whitespace(GetAfterOpenTokenIndentation()); 91_singleIndentationTrivia = AsyncLazy.Create(async cancellationToken => generator.Whitespace(await GetSingleIndentationAsync(cancellationToken).ConfigureAwait(false))); 92_braceIndentationTrivia = AsyncLazy.Create(async cancellationToken => generator.Whitespace(await GetBraceTokenIndentationAsync(cancellationToken).ConfigureAwait(false)));