class Byebug::VarCommand::ArgsCommand


Information about arguments of the current method/block

def self.description

def self.description
  <<-DESCRIPTION
    v[ar] a[args]
    #{short_description}
  DESCRIPTION
end

def self.regexp

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

def self.short_description

def self.short_description
  "Information about arguments of the current scope"
end

def execute

def execute
  var_args
end