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