2 instantiations of LeaveExceptionHandlerInstruction
System.Linq.Expressions (2)
System\Linq\Expressions\Interpreter\ControlFlowInstructions.cs (2)
690return s_cache[index] ??= new LeaveExceptionHandlerInstruction(labelIndex, hasValue); 692return new LeaveExceptionHandlerInstruction(labelIndex, hasValue);
4 references to LeaveExceptionHandlerInstruction
System.Linq.Expressions (4)
System\Linq\Expressions\Interpreter\ControlFlowInstructions.cs (3)
669private static readonly LeaveExceptionHandlerInstruction[] s_cache = new LeaveExceptionHandlerInstruction[2 * CacheSize]; 685internal static LeaveExceptionHandlerInstruction Create(int labelIndex, bool hasValue)
System\Linq\Expressions\Interpreter\InstructionList.cs (1)
1089Emit(LeaveExceptionHandlerInstruction.Create(EnsureLabelIndex(tryExpressionEndLabel), hasValue));