class Byebug::VarCommand::ArgsCommand

Information about arguments of the current method/block

Public Class Methods

description() click to toggle source
# File lib/byebug/commands/var/args.rb, line 20
def self.description
  <<-EOD
    v[ar] a[args]

    #{short_description}
  EOD
end
regexp() click to toggle source
# File lib/byebug/commands/var/args.rb, line 16
def self.regexp
  /^\s* a(?:rgs)? \s*$/x
end
short_description() click to toggle source
# File lib/byebug/commands/var/args.rb, line 28
def self.short_description
  'Information about arguments of the current scope'
end

Public Instance Methods

execute() click to toggle source
# File lib/byebug/commands/var/args.rb, line 32
def execute
  var_args
end