10 references to Instructions
System.Linq.Expressions (10)
System\Linq\Expressions\Interpreter\ControlFlowInstructions.cs (2)
304Instruction[] instructions = frame.Interpreter.Instructions.Instructions; 431Instruction[] instructions = frame.Interpreter.Instructions.Instructions;
System\Linq\Expressions\Interpreter\InterpretedFrame.cs (2)
41Data = new object[StackIndex + interpreter.Instructions.MaxStackDepth]; 43int c = interpreter.Instructions.MaxContinuationDepth;
System\Linq\Expressions\Interpreter\LightCompiler.cs (1)
143Instruction[] instructions = interpreter.Instructions.Instructions;
System\Linq\Expressions\Interpreter\LightLambda.cs (5)
53Instruction[] instructions = _interpreter.Instructions.Instructions; 137sb.Append(" .maxstack ").Append(_interpreter.Instructions.MaxStackDepth).AppendLine(); 138sb.Append(" .maxcontinuation ").Append(_interpreter.Instructions.MaxContinuationDepth).AppendLine(); 141Instruction[] instructions = _interpreter.Instructions.Instructions; 142InstructionArray.DebugView debugView = new InstructionArray.DebugView(_interpreter.Instructions);