class Haml::StringSplitter

def string_literal?(code)

def string_literal?(code)
  return false if SyntaxChecker.syntax_error?(code)
  type, instructions = Ripper.sexp(code)
  return false if type != :program
  return false if instructions.size > 1
  type, _ = instructions.first
  type == :string_literal
end