2 instantiations of EnterTryCatchFinallyInstruction
System.Linq.Expressions (2)
System\Linq\Expressions\Interpreter\ControlFlowInstructions.cs (2)
283return new EnterTryCatchFinallyInstruction(labelIndex, true); 288return new EnterTryCatchFinallyInstruction(UnknownInstrIndex, false);
7 references to EnterTryCatchFinallyInstruction
System.Linq.Expressions (7)
System\Linq\Expressions\Interpreter\ControlFlowInstructions.cs (2)
281internal static EnterTryCatchFinallyInstruction CreateTryFinally(int labelIndex) 286internal static EnterTryCatchFinallyInstruction CreateTryCatch()
System\Linq\Expressions\Interpreter\InstructionList.cs (2)
1032Emit(EnterTryCatchFinallyInstruction.CreateTryFinally(EnsureLabelIndex(finallyStartLabel))); 1037Emit(EnterTryCatchFinallyInstruction.CreateTryCatch());
System\Linq\Expressions\Interpreter\LightCompiler.cs (2)
1989var enterTryInstr = _instructions.GetInstruction(tryStart) as EnterTryCatchFinallyInstruction;
System\Linq\Expressions\Interpreter\LightLambda.cs (1)
57if (instruction is EnterTryCatchFinallyInstruction enterTryCatchFinally)