| Class | IRB::ExtendCommand::DebuggerResumeCommand |
| In: |
cli/ruby-debug/commands/irb.rb
|
| Parent: | Object |
FIXME: should we read these out of a directory to
make this more user-customizable?
A base command class that resume execution
# File cli/ruby-debug/commands/irb.rb, line 10
10: def self.execute(conf, *opts)
11: name =
12: if self.name =~ /IRB::ExtendCommand::(\S+)/
13: $1.downcase
14: else
15: 'unknown'
16: end
17: $rdebug_args = opts
18: $rdebug_command =
19: if $rdebug_irb_statements
20: $rdebug_irb_statements
21: else
22: ([name] + opts).join(' ')
23: end
24:
25: throw :IRB_EXIT, name.to_sym
26: end