class HTTP::Response::Parser

def add_body(chunk)

def add_body(chunk)
  if @chunk
    @chunk << chunk
  else
    @chunk = chunk
  end
end