class Byebug::LocalInterface


Interface class for standard byebug use.

def initialize

def initialize
  super()
  @input, @output, @error = STDIN, STDOUT, STDERR
end

def readline(prompt)

Parameters:
  • prompt () -- Prompt to be displayed.
def readline(prompt)
  Readline.readline(prompt, false)
rescue Interrupt
  puts('^C')
  retry
end