Class: Byebug::VarCommand::AllCommand
- Includes:
- Helpers::VarHelper
- Defined in:
- lib/byebug/commands/var/all.rb
Overview
Shows global, instance and local variables
Instance Attribute Summary
Attributes inherited from Command
Class Method Summary collapse
Instance Method Summary collapse
Methods included from Helpers::VarHelper
#var_args, #var_global, #var_instance, #var_list, #var_local
Methods included from Helpers::EvalHelper
#error_eval, #multiple_thread_eval, #separate_thread_eval, #silent_eval, #warning_eval
Methods inherited from Command
#arguments, columnize, #context, #frame, help, #initialize, match, to_s
Methods included from Helpers::StringHelper
#camelize, #deindent, #prettify
Constructor Details
This class inherits a constructor from Byebug::Command
Class Method Details
.description ⇒ Object
22 23 24 25 26 27 28 |
# File 'lib/byebug/commands/var/all.rb', line 22 def self.description <<-DESCRIPTION v[ar] a[ll] #{short_description} DESCRIPTION end |
.regexp ⇒ Object
18 19 20 |
# File 'lib/byebug/commands/var/all.rb', line 18 def self.regexp /^\s* a(?:ll)? \s*$/x end |
.short_description ⇒ Object
30 31 32 |
# File 'lib/byebug/commands/var/all.rb', line 30 def self.short_description "Shows local, global and instance variables of self." end |
Instance Method Details
#execute ⇒ Object
34 35 36 37 38 |
# File 'lib/byebug/commands/var/all.rb', line 34 def execute var_global var_instance("self") var_local end |