internal static EnterFinallyInstruction Create(int labelIndex)
 {
     if (labelIndex < CacheSize)
     {
         return(_cache[labelIndex] ?? (_cache[labelIndex] = new EnterFinallyInstruction(labelIndex)));
     }
     return(new EnterFinallyInstruction(labelIndex));
 }
 public void EmitEnterFinally(BranchLabel finallyStartLabel)
 {
     Emit(EnterFinallyInstruction.Create(EnsureLabelIndex(finallyStartLabel)));
 }