3 writes to _currentSlot
Microsoft.CodeAnalysis (3)
Operations\IOperation.OperationList.Reversed.cs (3)
97
_currentSlot
= int.MaxValue;
113
(var result,
_currentSlot
, _currentIndex) = _operation.MoveNextReversed(_currentSlot, _currentIndex);
120
_currentSlot
= int.MaxValue;
4 references to _currentSlot
Microsoft.CodeAnalysis (4)
Operations\IOperation.OperationList.Reversed.cs (4)
105
Debug.Assert(_operation != null &&
_currentSlot
is >= 0 and not int.MaxValue && _currentIndex is >= 0 and not int.MaxValue);
106
return _operation.GetCurrent(
_currentSlot
, _currentIndex);
112
Debug.Assert((
_currentSlot
== int.MaxValue) == (_currentIndex == int.MaxValue));
113
(var result, _currentSlot, _currentIndex) = _operation.MoveNextReversed(
_currentSlot
, _currentIndex);