class Byebug::Interface
def read_input(prompt, save_hist = true)
-
(String)
- Representing something to be run by the debugger.
def read_input(prompt, save_hist = true) line = prepare_input(prompt) return unless line history.push(line) if save_hist command_queue.concat(split_commands(line)) command_queue.shift end