| Class | IRB::ExtendCommand::Dbgr |
| In: |
cli/ruby-debug/commands/irb.rb
|
| Parent: | Object |
Issues a comamnd to the debugger without continuing execution.
# File cli/ruby-debug/commands/irb.rb, line 37
37: def self.execute(conf, *opts)
38: command =
39: if opts.size == 1 && opts[0].is_a?(String)
40: args = opts[0]
41: else
42: opts.join(' ')
43: end
44: if $rdebug_state && $rdebug_state.processor
45: processor = $rdebug_state.processor
46: processor.one_cmd($rdebug_state.processor.commands,
47: $rdebug_state.context,
48: command)
49: end
50: end