1 write to _writer
Microsoft.CodeAnalysis.Razor.Compiler (1)
Language\CodeGeneration\CodeWriterExtensions.cs (1)
998
_writer
= writer;
12 references to _writer
Microsoft.CodeAnalysis.Razor.Compiler (12)
Language\CodeGeneration\CodeWriterExtensions.cs (12)
1009
if (
_writer
is null)
1023
_writer
.WriteLine("{");
1027
_writer
.WriteLine();
1030
_writer
.CurrentIndent += _tabSize;
1031
_startIndent =
_writer
.CurrentIndent;
1036
TryAutoSpace(
_writer
.NewLine);
1039
if (
_writer
.CurrentIndent == _startIndent)
1041
_writer
.CurrentIndent -= _tabSize;
1046
_writer
.WriteLine("}");
1050
_writer
.WriteLine();
1057
_writer
.LastChar is char ch &&
1060
_writer
.Write(spaceCharacter);