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

Version Path
dirwatch-0.0.2 vendor/bundle/ruby/2.3.0/gems/byebug-9.1.0/lib/byebug/commands/up.rb
tdiary-5.0.6 vendor/bundle/gems/byebug-9.1.0/lib/byebug/commands/up.rb
byebug-9.1.0 lib/byebug/commands/up.rb
tdiary-5.0.5 vendor/bundle/gems/tdiary-5.0.4/vendor/bundle/gems/byebug-9.0.6/lib/byebug/commands/up.rb
tdiary-5.0.5 vendor/bundle/gems/byebug-9.0.6/lib/byebug/commands/up.rb
tdiary-5.0.4 vendor/bundle/gems/byebug-9.0.6/lib/byebug/commands/up.rb
byebug-9.0.6 lib/byebug/commands/up.rb
byebug-9.0.5 lib/byebug/commands/up.rb
byebug-9.0.4 lib/byebug/commands/up.rb
byebug-9.0.3 lib/byebug/commands/up.rb
byebug-9.0.2 lib/byebug/commands/up.rb
byebug-9.0.1 lib/byebug/commands/up.rb
byebug-9.0.0 lib/byebug/commands/up.rb
byebug-8.2.5 lib/byebug/commands/up.rb
byebug-8.2.4 lib/byebug/commands/up.rb
byebug-8.2.3 lib/byebug/commands/up.rb
byebug-8.2.2 lib/byebug/commands/up.rb
byebug-8.2.1 lib/byebug/commands/up.rb
byebug-8.2.0 lib/byebug/commands/up.rb
byebug-8.1.0 lib/byebug/commands/up.rb