1 override of Whitespace
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
CodeGeneration\CSharpSyntaxGenerator.cs (1)
44
internal override SyntaxTrivia
Whitespace
(string text)
8 references to Whitespace
Microsoft.CodeAnalysis.Features (8)
Wrapping\AbstractCodeActionComputer.cs (1)
78
SingleWhitespaceTrivia = 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)));