1 write to _writer
Microsoft.CodeAnalysis.Razor.Compiler (1)
Language\CodeGeneration\CodeWriterExtensions.cs (1)
997
_writer
= writer;
12 references to _writer
Microsoft.CodeAnalysis.Razor.Compiler (12)
Language\CodeGeneration\CodeWriterExtensions.cs (12)
1008
if (
_writer
is null)
1022
_writer
.WriteLine("{");
1026
_writer
.WriteLine();
1029
_writer
.CurrentIndent += _tabSize;
1030
_startIndent =
_writer
.CurrentIndent;
1035
TryAutoSpace(
_writer
.NewLine);
1038
if (
_writer
.CurrentIndent == _startIndent)
1040
_writer
.CurrentIndent -= _tabSize;
1045
_writer
.WriteLine("}");
1049
_writer
.WriteLine();
1056
_writer
.LastChar is char ch &&
1059
_writer
.Write(spaceCharacter);