public class DebugWriteCommand extends Command {
@Override
public PlainBlockCommandState parse(MatchTemplateImpl template, String parameters) {
Parameter param = Parameter.parseParameter(parameters, template.getSpecialTags());
template.appendOperation(new DebugWriteOperation(template.getCurrentTemplatePosition(), param));
return null;
}