class Byebug::RemoteInterface


Interface class for remote use of byebug.

def close

def close
  output.close
end

def confirm(prompt)

def confirm(prompt)
  super("CONFIRM #{prompt}")
rescue Errno::EPIPE, Errno::ECONNABORTED
  false
end

def initialize(socket)

def initialize(socket)
  super()
  @input = socket
  @output = socket
  @error = socket
end

def print(message)

def print(message)
  super(message)
rescue Errno::EPIPE, Errno::ECONNABORTED
  nil
end

def puts(message)

def puts(message)
  super(message)
rescue Errno::EPIPE, Errno::ECONNABORTED
  nil
end

def read_command(prompt)

def read_command(prompt)
  super("PROMPT #{prompt}")
rescue Errno::EPIPE, Errno::ECONNABORTED
  "continue"
end

def readline(prompt)

def readline(prompt)
  puts(prompt)
  (input.gets || "continue").chomp
end