3 writes to _indentDepth
Microsoft.CodeAnalysis.CSharp (3)
Compiler\DocumentationCommentCompiler.cs (3)
1242
_indentDepth
= t.InitialIndentDepth;
1248
_indentDepth
++;
1253
_indentDepth
--;
10 references to _indentDepth
Microsoft.CodeAnalysis.CSharp (10)
Compiler\DocumentationCommentCompiler.cs (10)
106
Debug.Assert(compiler.
_indentDepth
== 0);
165
Debug.Assert(compiler.
_indentDepth
== 0);
1235
_temporaryStringBuilders.Push(new TemporaryStringBuilder(
_indentDepth
));
1241
RoslynDebug.Assert(
_indentDepth
== t.InitialIndentDepth, $"Temporary strings should be indent-neutral (was {t.InitialIndentDepth}, is {
_indentDepth
})");
1254
Debug.Assert(
_indentDepth
>= 0);
1275
builder.Append(MakeIndent(
_indentDepth
));
1280
_writer.Write(MakeIndent(
_indentDepth
));
1290
builder.Append(MakeIndent(
_indentDepth
));
1296
_writer.Write(MakeIndent(
_indentDepth
));