1 write to _writer
Microsoft.CodeAnalysis.CSharp (1)
Compiler\DocumentationCommentCompiler.cs (1)
64
_writer
= writer;
11 references to _writer
Microsoft.CodeAnalysis.CSharp (11)
Compiler\DocumentationCommentCompiler.cs (11)
563
TextWriter? expanderWriter = shouldSkipPartialDefinitionComments ? null :
_writer
; // Don't actually write partial method definition parts.
567
else if (
_writer
!= null && !shouldSkipPartialDefinitionComments)
1402
else if (
_writer
!= null)
1404
_writer
.Write(indentedAndWrappedString);
1416
else if (
_writer
!= null)
1418
_writer
.Write(MakeIndent(_indentDepth));
1419
_writer
.WriteLine(message);
1432
else if (
_writer
!= null)
1434
_writer
.Write(MakeIndent(_indentDepth));
1437
_writer
.Write(message[start + i]);
1439
_writer
.WriteLine();