class Byebug::InterruptCommand

:nodoc:

def execute

def execute
  unless Byebug.interrupt_last
    context = Byebug.thread_context(Thread.main)
    context.interrupt
  end
end

def help(cmd)

def help(cmd)
  %{
    i[nterrupt]\tinterrupt the program
  }
end

def help_command

def help_command
  'interrupt'
end

def regexp

def regexp
  /^\s*i(?:nterrupt)?\s*$/
end