Debugger::Command
Implements debugger “continue” command.
# File lib/ruby-debug/commands/continue.rb, line 11 def execute if @match[1] && !@state.context.dead? filename = File.expand_path(@state.file) line_number = get_int(@match[1], "Continue", 0, nil, 0) return unless line_number unless LineCache.trace_line_numbers(filename).member?(line_number) errmsg pr("continue.errors.unstopped_line", line: line_number, file: filename) return end @state.context.set_breakpoint(filename, line_number) end @state.proceed end
Generated with the Darkfish Rdoc Generator 2.