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)
354
TextWriter? expanderWriter = shouldSkipPartialDefinitionComments ? null :
_writer
; // Don't actually write partial method definition parts.
358
else if (
_writer
!= null && !shouldSkipPartialDefinitionComments)
1257
else if (
_writer
!= null)
1259
_writer
.Write(indentedAndWrappedString);
1271
else if (
_writer
!= null)
1273
_writer
.Write(MakeIndent(_indentDepth));
1274
_writer
.WriteLine(message);
1287
else if (
_writer
!= null)
1289
_writer
.Write(MakeIndent(_indentDepth));
1292
_writer
.Write(message[start + i]);
1294
_writer
.WriteLine();