public class MatchAnyCommand extends Command {
@Override
public PlainBlockCommandState parse(MatchTemplateImpl template, String parameters) {
Label nextInstruction = new Label();
template.appendOperation(new MatchAnyOperation(template.getCurrentTemplatePosition(),
Parameter.parseParameter(parameters, template.getSpecialTags()), nextInstruction));
nextInstruction.setDestinationToNextCommand(template);
return null;
}