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)
1406
else if (
_writer
!= null)
1408
_writer
.Write(indentedAndWrappedString);
1420
else if (
_writer
!= null)
1422
_writer
.Write(MakeIndent(_indentDepth));
1423
_writer
.WriteLine(message);
1436
else if (
_writer
!= null)
1438
_writer
.Write(MakeIndent(_indentDepth));
1441
_writer
.Write(message[start + i]);
1443
_writer
.WriteLine();