class Rufo::Formatter

def skip_space_backslash

def skip_space_backslash
  has_slash_newline = false
  while space?
    has_slash_newline ||= current_token_value == "\\\n"
    next_token
  end
  has_slash_newline
end