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
    want_space = first_space || @spaces_around_equal == :one
    indent_after_space value, sticky: sticky,
                              want_space: want_space,
                              first_space: first_space,
                              preserve_whitespace: @spaces_around_equal == :dynamic && !@align_assignments
  end
end