Class: Debugger::BreakpointsCommand
- Inherits:
-
Command
- Object
- SimpleDelegator
- Command
- Debugger::BreakpointsCommand
show all
- Defined in:
- lib/ruby-debug-ide/commands/breakpoints.rb
Overview
Constant Summary
Constants inherited
from Command
Command::DEF_OPTIONS
Class Method Summary
collapse
Instance Method Summary
collapse
Methods inherited from Command
commands, file_filter_supported?, #find, inherited, #initialize, load_commands, #match, method_missing, options, unescape_incoming
Class Method Details
.help(cmd) ⇒ Object
83
84
85
86
87
|
# File 'lib/ruby-debug-ide/commands/breakpoints.rb', line 83
def help(cmd)
%{
b[reak]\tlist breakpoints
}
end
|
.help_command ⇒ Object
79
80
81
|
# File 'lib/ruby-debug-ide/commands/breakpoints.rb', line 79
def help_command
'break'
end
|
Instance Method Details
#execute ⇒ Object
74
75
76
|
# File 'lib/ruby-debug-ide/commands/breakpoints.rb', line 74
def execute
print_breakpoints Debugger.breakpoints
end
|
#regexp ⇒ Object
70
71
72
|
# File 'lib/ruby-debug-ide/commands/breakpoints.rb', line 70
def regexp
/^\s*info\s*break$/
end
|