class Rufo::Formatter

def visit_assign_value(value)

def visit_assign_value(value)
  base_column = @column
  has_slash_newline, first_space = skip_space_backslash
  sticky = indentable_value?(value)
  # Remove backslash after equal + newline (it's useless)
  if has_slash_newline
    skip_space_or_newline
    write_line
    indent(next_indent) do
      write_indent
      visit(value)
    end
  else
    indent_after_space value, sticky: sticky,
                              want_space: true,
                              first_space: first_space
  end
end