class HTTP::Response::Parser

def on_body(chunk)

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