class Byebug::Interface

def read_command(prompt)


Pops a command from the input stream.
def read_command(prompt)
  return command_queue.shift unless command_queue.empty?
  cmds = read_input(prompt)
  return unless cmds
  command_queue.concat(cmds)
  command_queue.shift
end