Sha256: 53d14dc39fcc30c422c50349fe75806b67fadb8944138885269684c7e768b769
Contents?: true
Size: 751 Bytes
Versions: 18
Compression:
Stored size: 751 Bytes
Contents
# frozen_string_literal: true 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 <<-DESCRIPTION v[ar] i[nstance][ <object>] #{short_description} DESCRIPTION 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
Version data entries
18 entries across 18 versions & 8 rubygems