1 write to _interpreter
System.Linq.Expressions (1)
System\Linq\Expressions\Interpreter\LightLambda.cs (1)
46
_interpreter
= interpreter;
7 references to _interpreter
System.Linq.Expressions (7)
System\Linq\Expressions\Interpreter\LightLambda.cs (7)
53
Instruction[] instructions =
_interpreter
.Instructions.Instructions;
132
string name =
_interpreter
.Name ?? "lambda_method";
136
sb.Append(" .locals ").Append(
_interpreter
.LocalCount).AppendLine();
137
sb.Append(" .maxstack ").Append(
_interpreter
.Instructions.MaxStackDepth).AppendLine();
138
sb.Append(" .maxcontinuation ").Append(
_interpreter
.Instructions.MaxContinuationDepth).AppendLine();
141
Instruction[] instructions =
_interpreter
.Instructions.Instructions;
142
InstructionArray.DebugView debugView = new InstructionArray.DebugView(
_interpreter
.Instructions);