Class: Debugger::DisplayCommand
- Inherits:
-
Command
- Object
- Command
- Debugger::DisplayCommand
show all
- Defined in:
- lib/ruby-debug/commands/display.rb
Overview
Constant Summary
Constants inherited
from Command
Command::DEF_OPTIONS
Class Method Summary
collapse
Instance Method Summary
collapse
Methods inherited from Command
commands, #find, inherited, #initialize, load_commands, #match, method_missing, options, register_setting_get, register_setting_set, register_setting_var, settings, settings_map
Class Method Details
.help(cmd) ⇒ Object
71
72
73
74
75
|
# File 'lib/ruby-debug/commands/display.rb', line 71
def help(cmd)
%{
disp[lay]\t\tdisplay expression list
}
end
|
.help_command ⇒ Object
67
68
69
|
# File 'lib/ruby-debug/commands/display.rb', line 67
def help_command
'display'
end
|
Instance Method Details
#execute ⇒ Object
62
63
64
|
# File 'lib/ruby-debug/commands/display.rb', line 62
def execute
print_display_expressions
end
|
#regexp ⇒ Object
58
59
60
|
# File 'lib/ruby-debug/commands/display.rb', line 58
def regexp
/^\s*disp(?:lay)?$/
end
|