class Byebug::VarCommand::AllCommand


Shows global, instance and local variables

def self.description

def self.description
  <<-DESCRIPTION
    v[ar] a[ll]
    #{short_description}
  DESCRIPTION
end

def self.regexp

def self.regexp
  /^\s* a(?:ll)? \s*$/x
end

def self.short_description

def self.short_description
  "Shows local, global and instance variables of self."
end

def execute

def execute
  var_global
  var_instance("self")
  var_local
end