class Byebug::LocalInterface


Interface class for standard byebug use.

def initialize

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

def readline(prompt)

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