Class: Byebug::VarCommand::LocalCommand

Inherits:
Command
  • Object
show all
Includes:
Helpers::VarHelper
Defined in:
lib/byebug/commands/var/local.rb

Overview

Shows local variables in current scope

Instance Attribute Summary

Attributes inherited from Command

#processor

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

.descriptionObject



22
23
24
25
26
27
28
# File 'lib/byebug/commands/var/local.rb', line 22

def self.description
  <<-DESCRIPTION
    v[ar] l[ocal]

    #{short_description}
  DESCRIPTION
end

.regexpObject



18
19
20
# File 'lib/byebug/commands/var/local.rb', line 18

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

.short_descriptionObject



30
31
32
# File 'lib/byebug/commands/var/local.rb', line 30

def self.short_description
  "Shows local variables in current scope."
end

Instance Method Details

#executeObject



34
35
36
# File 'lib/byebug/commands/var/local.rb', line 34

def execute
  var_local
end