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)
355
TextWriter? expanderWriter = shouldSkipPartialDefinitionComments ? null :
_writer
; // Don't actually write partial method definition parts.
359
else if (
_writer
!= null && !shouldSkipPartialDefinitionComments)
1258
else if (
_writer
!= null)
1260
_writer
.Write(indentedAndWrappedString);
1272
else if (
_writer
!= null)
1274
_writer
.Write(MakeIndent(_indentDepth));
1275
_writer
.WriteLine(message);
1288
else if (
_writer
!= null)
1290
_writer
.Write(MakeIndent(_indentDepth));
1293
_writer
.Write(message[start + i]);
1295
_writer
.WriteLine();