class Rufo::Formatter

def write_params_comma

def write_params_comma
  skip_space
  check :on_comma
  write ","
  next_token
  first_space = skip_space
  if newline? || comment?
    consume_end_of_line
    write_indent
  else
    write_space_using_setting(first_space, @spaces_after_comma)
  end
end