# File lib/http/cookie/scanner.rb, line 34
  def scan_dquoted
    ''.tap { |s|
      case
      when skip(/"/)
        break
      when skip(/\\/)
        s << getch
      when scan(/[^"\\]+/)
        s << matched
      end until eos?
    }
  end