2 instantiations of EnterTryCatchFinallyInstruction
System.Linq.Expressions (2)
System\Linq\Expressions\Interpreter\ControlFlowInstructions.cs (2)
277return new EnterTryCatchFinallyInstruction(labelIndex, true); 282return new EnterTryCatchFinallyInstruction(UnknownInstrIndex, false);
7 references to EnterTryCatchFinallyInstruction
System.Linq.Expressions (7)
System\Linq\Expressions\Interpreter\ControlFlowInstructions.cs (2)
275internal static EnterTryCatchFinallyInstruction CreateTryFinally(int labelIndex) 280internal 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)