class Byebug::VarCommand::AllCommand

Shows global, instance and local variables

Public Class Methods

description() click to toggle source
# File lib/byebug/commands/var/all.rb, line 21
      def self.description
        <<-DESCRIPTION
          v[ar] a[ll]

          #{short_description}
        DESCRIPTION
      end
regexp() click to toggle source
# File lib/byebug/commands/var/all.rb, line 17
def self.regexp
  /^\s* a(?:ll)? \s*$/x
end
short_description() click to toggle source
# File lib/byebug/commands/var/all.rb, line 29
def self.short_description
  "Shows local, global and instance variables of self."
end

Public Instance Methods

execute() click to toggle source
# File lib/byebug/commands/var/all.rb, line 33
def execute
  var_global
  var_instance("self")
  var_local
end