4 writes to _current
Microsoft.CodeAnalysis.CSharp.Emit.UnitTests (4)
CodeGen\CodeGenCapturing.cs (4)
223_current = (-1, -1); 236return FindNonEmptyDepth(0, _layout, out _current); 243return FindNonEmptyDepth(_current.depth + 1, _layout, out _current); 246_current = (_current.depth, newIndex);
6 references to _current
Microsoft.CodeAnalysis.CSharp.Emit.UnitTests (6)
CodeGen\CodeGenCapturing.cs (6)
226public (int depth, int localFuncIndex) Current => _current; 234if (_current.depth < 0) 240int newIndex = _current.localFuncIndex + 1; 241if (newIndex == _layout[_current.depth]) 243return FindNonEmptyDepth(_current.depth + 1, _layout, out _current); 246_current = (_current.depth, newIndex);