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