class Byebug::VarCommand


Shows variables and its values

def self.description

def self.description
  <<-EOD
    [v]ar <subcommand>
    #{short_description}
  EOD
end

def self.regexp

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

def self.short_description

def self.short_description
  'Shows variables and its values'
end