for (; rt != null; rt = (RightTuple) it.next(rt)) {
followPeerFromRightInput(rt.getFirstChild(), peerNode, smem, sinks, insert, wm);
}
return;
} else if (NodeTypeEnums.FromNode == node.getType()) {
FromMemory fm = (FromMemory) wm.getNodeMemory((MemoryFactory) node);
LeftTupleMemory ltm = fm.getBetaMemory().getLeftTupleMemory();
FastIterator it = ltm.fullFastIterator();
for (LeftTuple lt = (LeftTuple) it.next(null); lt != null; lt = (LeftTuple) it.next(lt)) {
followPeerFromLeftInput(lt.getFirstChild(), peerNode, smem, sinks, insert, wm);
}
return;