public void run() throws SaxonApiException {
super.run();
String selectExpr = getOption(_select).getString();
Select input = new Select(runtime,source,selectExpr,step.getNode());
while (input.moreDocuments()) {
XdmNode doc = input.read();
result.write(doc);
}
}