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