Sha256: 2ea8d107e936ca2573b5387d1a47d2bfd074227a41eca929aff85d4ed70035e5
Contents?: true
Size: 840 Bytes
Versions: 25
Compression:
Stored size: 840 Bytes
Contents
require 'pathname' require 'byebug/command' require 'byebug/helpers/frame' require 'byebug/helpers/parse' module Byebug # # Move the current frame up in the backtrace. # class UpCommand < Command include Helpers::FrameHelper include Helpers::ParseHelper self.allow_in_post_mortem = true def self.regexp /^\s* up (?:\s+(\S+))? \s*$/x end def self.description <<-EOD up[ count] #{short_description} Use the "bt" command to find out where you want to go. EOD end def self.short_description 'Moves to a higher frame in the stack trace' end def execute pos, err = parse_steps(@match[1], 'Up') return errmsg(err) unless pos jump_frames(pos) ListCommand.new(processor).execute if Setting[:autolist] end end end
Version data entries
25 entries across 24 versions & 3 rubygems