class Byebug::VarCommand::InstanceSubcommand
Shows instance variables
def description
def description <<-EOD v[ar] i[nstance][ <object>] #{short_description} EOD end
def execute
def execute var_instance(@match[1]) end
def regexp
def regexp /^\s* i(?:nstance)? (?:\s+ (.+))? \s*$/x end
def short_description
def short_description 'Shows instance variables of self or a specific object.' end