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