fn renderOnlySpace(r: *Render, space: Space) Error!void
fn renderOnlySpace(r: *Render, space: Space) Error!void { const ais = r.ais; switch (space) { .none => {}, .space, .maybe_space => try ais.writeByte(' '), .newline => try ais.insertNewline(), .comma, .comma_maybe_space => try ais.writeAll(",\n"), .comma_space => try ais.writeAll(", "), .semicolon => try ais.writeAll(";\n"), .skip => unreachable, } }