Sha256: 3baa94931d82b2c3892d1286232e575a07fc59a9ea6d16da82e0b9841962e6f0
Contents?: true
Size: 1.8 KB
Versions: 14
Compression:
Stored size: 1.8 KB
Contents
module Debugger class NextCommand < Command # :nodoc: self.need_context = true def regexp /^\s*n(?:ext)?(?:\s+(\d+))?$/ end def execute steps = @match[1] ? @match[1].to_i : 1 @state.context.step_over steps, @state.frame_pos @state.proceed end class << self def help_command 'next' end def help(cmd) %{ n[ext][ nnn]\tgo over one line or till line nnn } end end end class StepCommand < Command # :nodoc: self.need_context = true def regexp /^\s*s(?:tep)?(?:\s+(\d+))?$/ end def execute @state.context.stop_next = @match[1] ? @match[1].to_i : 1 @state.proceed end class << self def help_command 'step' end def help(cmd) %{ s[tep][ nnn]\tstep (into methods) one line or till line nnn } end end end class FinishCommand < Command # :nodoc: self.need_context = true def regexp /^\s*fin(?:ish)?$/ end def execute if @state.frame_pos == @state.context.stack_size - 1 print "\"finish\" not meaningful in the outermost frame.\n" else @state.context.stop_frame = @state.frame_pos @state.frame_pos = 0 @state.proceed end end class << self def help_command 'finish' end def help(cmd) %{ fin[ish]\treturn to outer frame } end end end class ContinueCommand < Command # :nodoc: def regexp /^\s*c(?:ont)?$/ end def execute @state.proceed end class << self def help_command 'cont' end def help(cmd) %{ c[ont]\trun until program ends or hit breakpoint } end end end end
Version data entries
14 entries across 14 versions & 1 rubygems