// Only render as an array if we have a name collision
writer.beginArray();
}
for (Variable variable : vars) {
Formatter formatter = _snitch.getFormatter(variable);
formatter.format(variable.getValue(), writer);
}
if (vars.size() > 1) {
writer.endArray();
}
}