Microsoft.Cci.CodeModelToILConverter.LabelIsOutsideCurrentExceptionBlock C# (CSharp) Method

LabelIsOutsideCurrentExceptionBlock() private method

private LabelIsOutsideCurrentExceptionBlock ( Microsoft.Cci.ILGeneratorLabel label ) : bool
label Microsoft.Cci.ILGeneratorLabel
return bool
    internal bool LabelIsOutsideCurrentExceptionBlock(ILGeneratorLabel label) {
      IStatement tryCatchContainingTarget = null;
      this.mostNestedTryCatchFor.TryGetValue(label, out tryCatchContainingTarget);
      return this.currentTryCatch != tryCatchContainingTarget;
    }