class Sass::Script::Lexer

def ident

def ident
  return unless s = @scanner.scan(REGULAR_EXPRESSIONS[:ident])
  [:ident, s.gsub(/\\(.)/, '\1')]
end