class Byebug::ThreadListCommand

:nodoc:

def execute

def execute
  threads = Byebug.contexts.sort_by{|c| c.thnum}.each do |c|
    display_context(c)
  end
end

def help(cmd)

def help(cmd)
  %{
    th[read] l[ist]\t\t\tlist all threads
  }
end

def help_command

def help_command
  'thread'
end

def regexp

def regexp
  /^\s*th(?:read)?\s+l(?:ist)?\s*$/
end