public class NextPassCommand extends ParameterlessCommand {
@Override
protected PlainBlockCommandState parse(MatchTemplateImpl template) {
template.appendOperation(new CheckFinishedOperation(template.getCurrentTemplatePosition(), OperationResult.CONTINUE));
template.appendOperation(new NextPassOperation(template.getCurrentTemplatePosition()));
return null;
}