3 writes to _indentDepth
Microsoft.CodeAnalysis.CSharp (3)
Compiler\DocumentationCommentCompiler.cs (3)
1384
_indentDepth
= t.InitialIndentDepth;
1390
_indentDepth
++;
1395
_indentDepth
--;
10 references to _indentDepth
Microsoft.CodeAnalysis.CSharp (10)
Compiler\DocumentationCommentCompiler.cs (10)
105
Debug.Assert(compiler.
_indentDepth
== 0);
164
Debug.Assert(compiler.
_indentDepth
== 0);
1377
_temporaryStringBuilders.Push(new TemporaryStringBuilder(
_indentDepth
));
1383
RoslynDebug.Assert(
_indentDepth
== t.InitialIndentDepth, $"Temporary strings should be indent-neutral (was {t.InitialIndentDepth}, is {
_indentDepth
})");
1396
Debug.Assert(
_indentDepth
>= 0);
1417
builder.Append(MakeIndent(
_indentDepth
));
1422
_writer.Write(MakeIndent(
_indentDepth
));
1432
builder.Append(MakeIndent(
_indentDepth
));
1438
_writer.Write(MakeIndent(
_indentDepth
));