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