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