Class: Byebug::ControlProcessor

Inherits:
CommandProcessor show all
Defined in:
lib/byebug/processors/control_processor.rb

Overview

Processes commands when there’s not program running

Instance Attribute Summary

Attributes inherited from CommandProcessor

#context, #prev_line

Instance Method Summary collapse

Methods inherited from CommandProcessor

#at_breakpoint, #at_catchpoint, #at_line, #at_return, #at_tracing, #command_list, #frame, #initialize, #interface, #printer, #proceed!, #process_commands

Methods included from Helpers::EvalHelper

#error_eval, #silent_eval, #single_thread_eval, #thread_safe_eval, #warning_eval

Constructor Details

This class inherits a constructor from Byebug::CommandProcessor

Instance Method Details

#commandsObject

Available commands



9
10
11
# File 'lib/byebug/processors/control_processor.rb', line 9

def commands
  super.select(&:allow_in_control)
end

#promptObject

Prompt shown before reading a command.



16
17
18
# File 'lib/byebug/processors/control_processor.rb', line 16

def prompt
  '(byebug:ctrl) '
end