return childrenAs(Declaration.class);
}
public void render(RenderContext rc) {
TokenConsumer out = rc.getOut();
out.mark(getFilePosition());
if (children().isEmpty()) {
throw new SomethingWidgyHappenedError("Empty MultiDeclaration");
}
out.consume("var");
boolean seen = false;