1 instantiation of InstructionArray
System.Linq.Expressions (1)
System\Linq\Expressions\Interpreter\InstructionList.cs (1)
299return new InstructionArray(
9 references to InstructionArray
System.Linq.Expressions (9)
System\Linq\Expressions\Interpreter\InstructionList.cs (4)
16[DebuggerTypeProxy(typeof(InstructionArray.DebugView))] 43private readonly InstructionArray _array; 45public DebugView(InstructionArray array) 278public InstructionArray ToArray()
System\Linq\Expressions\Interpreter\Interpreter.cs (3)
23private readonly InstructionArray _instructions; 28internal Interpreter(string? name, LocalVariables locals, InstructionArray instructions, DebugInfo[] debugInfos) 43internal InstructionArray Instructions => _instructions;
System\Linq\Expressions\Interpreter\LightLambda.cs (2)
142InstructionArray.DebugView debugView = new InstructionArray.DebugView(_interpreter.Instructions);