3 writes to _stack
Microsoft.CodeAnalysis (3)
Syntax\InternalSyntax\SyntaxDiagnosticInfoList.cs (3)
61
_stack
= null;
65
_stack
= new NodeIteration[8];
143
_stack
= tmp;
11 references to _stack
Microsoft.CodeAnalysis (11)
Syntax\InternalSyntax\SyntaxDiagnosticInfoList.cs (11)
74
var diagIndex =
_stack
![_count - 1].DiagnosticIndex;
75
var node =
_stack
[_count - 1].Node;
81
_stack
[_count - 1].DiagnosticIndex = diagIndex;
85
var slotIndex =
_stack
[_count - 1].SlotIndex;
96
_stack
[_count - 1].SlotIndex = slotIndex;
138
RoslynDebug.Assert(
_stack
is object);
139
if (_count >=
_stack
.Length)
141
var tmp = new NodeIteration[
_stack
.Length * 2];
142
Array.Copy(
_stack
, tmp,
_stack
.Length);
146
_stack
[_count] = new NodeIteration(node);