class Byebug::ContinueCommand
def execute
def execute if @match[1] num, err = get_int(@match[1], 'Continue', 0, nil) return errmsg(err) unless num filename = File.expand_path(frame.file) unless Breakpoint.potential_line?(filename, num) return errmsg(pr('continue.errors.unstopped_line', line: num)) end Breakpoint.add(filename, num) end processor.proceed! Byebug.stop if Byebug.stoppable? end