7 references to CurrentStackDepth
System.Linq.Expressions (7)
System\Linq\Expressions\Interpreter\BranchLabel.cs (1)
54_stackDepth = instructions.CurrentStackDepth;
System\Linq\Expressions\Interpreter\LightCompiler.cs (6)
329Debug.Assert(_instructions.CurrentStackDepth == (node.ReturnType != typeof(void) ? 1 : 0)); 2999int startingStackDepth = _instructions.CurrentStackDepth; 3028Debug.Assert(_instructions.CurrentStackDepth == startingStackDepth); 3046int startingStackDepth = _instructions.CurrentStackDepth; 3118Debug.Assert(_instructions.CurrentStackDepth == startingStackDepth + (expr.Type == typeof(void) ? 0 : 1), 3119$"{_instructions.CurrentStackDepth} vs {startingStackDepth + (expr.Type == typeof(void) ? 0 : 1)} for {expr.NodeType}");