4 writes to _currentContinuationsDepth
System.Linq.Expressions (4)
System\Linq\Expressions\Interpreter\InstructionList.cs (4)
205_currentContinuationsDepth -= instruction.ConsumedContinuations; 207_currentContinuationsDepth += instruction.ProducedContinuations; 223_currentContinuationsDepth -= instruction.ProducedContinuations; 224_currentContinuationsDepth += instruction.ConsumedContinuations;
4 references to _currentContinuationsDepth
System.Linq.Expressions (4)
System\Linq\Expressions\Interpreter\InstructionList.cs (4)
206Debug.Assert(_currentContinuationsDepth >= 0, $"negative continuations {instruction}"); 208if (_currentContinuationsDepth > _maxContinuationDepth) 210_maxContinuationDepth = _currentContinuationsDepth; 247public int CurrentContinuationsDepth => _currentContinuationsDepth;