Class: Byebug::VarGlobalCommand

Inherits:
Command
  • Object
show all
Defined in:
lib/byebug/commands/variables.rb

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Command

command_exists?, commands, find, format_subcmd, format_subcmds, help, inherited, #initialize, load_commands, #match, register_setting_get, register_setting_set, register_setting_var, settings, settings_map, terminal_width

Constructor Details

This class inherits a constructor from Byebug::Command

Class Method Details

.descriptionObject



99
100
101
# File 'lib/byebug/commands/variables.rb', line 99

def description
  %{v[ar] g[lobal]\t\t\tshow global variables}
end

.namesObject



95
96
97
# File 'lib/byebug/commands/variables.rb', line 95

def names
  %w(var)
end

Instance Method Details

#executeObject



90
91
92
# File 'lib/byebug/commands/variables.rb', line 90

def execute
  var_global
end

#regexpObject



86
87
88
# File 'lib/byebug/commands/variables.rb', line 86

def regexp
  /^\s* v(?:ar)? \s+ g(?:lobal)? \s*$/x
end