class Byebug::ControlProcessor

Processes commands when there's not program running

Public Instance Methods

commands() click to toggle source

Available commands

Calls superclass method Byebug::CommandProcessor#commands
# File lib/byebug/processors/control_processor.rb, line 9
def commands
  super.select(&:allow_in_control)
end
prompt() click to toggle source

Prompt shown before reading a command.

# File lib/byebug/processors/control_processor.rb, line 16
def prompt
  '(byebug:ctrl) '
end