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)
361
TextWriter? expanderWriter = shouldSkipPartialDefinitionComments ? null :
_writer
; // Don't actually write partial method definition parts.
365
else if (
_writer
!= null && !shouldSkipPartialDefinitionComments)
1264
else if (
_writer
!= null)
1266
_writer
.Write(indentedAndWrappedString);
1278
else if (
_writer
!= null)
1280
_writer
.Write(MakeIndent(_indentDepth));
1281
_writer
.WriteLine(message);
1294
else if (
_writer
!= null)
1296
_writer
.Write(MakeIndent(_indentDepth));
1299
_writer
.Write(message[start + i]);
1301
_writer
.WriteLine();