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)
206
Debug.Assert(
_currentContinuationsDepth
>= 0, $"negative continuations {instruction}");
208
if (
_currentContinuationsDepth
> _maxContinuationDepth)
210
_maxContinuationDepth =
_currentContinuationsDepth
;
247
public int CurrentContinuationsDepth =>
_currentContinuationsDepth
;