Class: Debugger::ContinueCommand
- Defined in:
- lib/ruby-debug-ide/commands/stepping.rb
Overview
:nodoc:
Constant Summary
Constants inherited from Command
Debugger::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
Constructor Details
This class inherits a constructor from Debugger::Command
Class Method Details
.help(cmd) ⇒ Object
101 102 103 104 105 |
# File 'lib/ruby-debug-ide/commands/stepping.rb', line 101 def help(cmd) %{ c[ont]\trun until program ends or hit breakpoint } end |
.help_command ⇒ Object
97 98 99 |
# File 'lib/ruby-debug-ide/commands/stepping.rb', line 97 def help_command 'cont' end |
Instance Method Details
#execute ⇒ Object
92 93 94 |
# File 'lib/ruby-debug-ide/commands/stepping.rb', line 92 def execute @state.proceed end |
#regexp ⇒ Object
88 89 90 |
# File 'lib/ruby-debug-ide/commands/stepping.rb', line 88 def regexp /^\s*c(?:ont)?$/ end |