2 instantiations of EnterFinallyInstruction
System.Linq.Expressions (2)
System\Linq\Expressions\Interpreter\ControlFlowInstructions.cs (2)
498return s_cache[labelIndex] ??= new EnterFinallyInstruction(labelIndex); 500return new EnterFinallyInstruction(labelIndex);
4 references to EnterFinallyInstruction
System.Linq.Expressions (4)
System\Linq\Expressions\Interpreter\ControlFlowInstructions.cs (3)
483private static readonly EnterFinallyInstruction[] s_cache = new EnterFinallyInstruction[CacheSize]; 494internal static EnterFinallyInstruction Create(int labelIndex)
System\Linq\Expressions\Interpreter\InstructionList.cs (1)
1049Emit(EnterFinallyInstruction.Create(EnsureLabelIndex(finallyStartLabel)));