lib/byebug/commands/var/instance.rb



require 'byebug/helpers/var'

module Byebug
  #
  # Reopens the +var+ command to define the +instance+ subcommand
  #
  class VarCommand < Command
    #
    # Shows instance variables
    #
    class InstanceCommand < Command
      include Helpers::VarHelper

      self.allow_in_post_mortem = true

      def self.regexp
        /^\s* i(?:nstance)? (?:\s+ (.+))? \s*$/x
      end

      def self.description
        <<-EOD
          v[ar] i[nstance][ <object>]

          #{short_description}
        EOD
      end

      def self.short_description
        'Shows instance variables of self or a specific object.'
      end

      def execute
        var_instance(@match[1])
      end
    end
  end
end