1 write to _writer
Microsoft.CodeAnalysis.CSharp (1)
Compiler\DocumentationCommentCompiler.cs (1)
65
_writer
= writer;
11 references to _writer
Microsoft.CodeAnalysis.CSharp (11)
Compiler\DocumentationCommentCompiler.cs (11)
396
TextWriter? expanderWriter = shouldSkipPartialDefinitionComments ? null :
_writer
; // Don't actually write partial method definition parts.
400
else if (
_writer
!= null && !shouldSkipPartialDefinitionComments)
1299
else if (
_writer
!= null)
1301
_writer
.Write(indentedAndWrappedString);
1313
else if (
_writer
!= null)
1315
_writer
.Write(MakeIndent(_indentDepth));
1316
_writer
.WriteLine(message);
1329
else if (
_writer
!= null)
1331
_writer
.Write(MakeIndent(_indentDepth));
1334
_writer
.Write(message[start + i]);
1336
_writer
.WriteLine();