class Byebug::ThreadListCommand

def execute

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