class Byebug::LocalInterface
Interface class for standard byebug use.
def initialize
def initialize super() @input = STDIN @output = STDOUT @error = STDERR end
def readline(prompt)
-
prompt() -- Prompt to be displayed.
def readline(prompt) Readline.readline(prompt, false) rescue Interrupt puts('^C') retry end