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

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

    return result;
  }