Пример #1
0
  @Override
  public PIntegerIterator executePIntegerIterator(VirtualFrame frame)
      throws UnexpectedResultException {
    probe.enter(child, frame);
    PIntegerIterator result;

    try {
      result = child.executePIntegerIterator(frame);
      probe.leave(child, frame);
    } catch (KillException e) {
      throw (e);
    } catch (Exception e) {
      probe.leaveExceptional(child, frame, e);
      throw (e);
    }

    return result;
  }