// Single horizontal link
context.drawLine(sx, sy, tx, ty);
// Draw an arrow if the link's target is the last node of the rule
if(link.target.lastNodeOfRule)
context.drawRightArrow(tx, ty, context.getPixelArrowWidth(), context.getPixelArrowHeight());
}
} else {
drawBox(context, link);
}