class Byebug::VarCommand


Shows variables and its values

def self.description

def self.description
  <<-DESCRIPTION
    [v]ar <subcommand>
    #{short_description}
  DESCRIPTION
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