lib/byebug/processors/post_mortem_processor.rb



require 'byebug/processors/command_processor'

module Byebug
  #
  # Processes commands in post_mortem mode
  #
  class PostMortemProcessor < CommandProcessor
    def commands
      super.select(&:allow_in_post_mortem)
    end

    def prompt
      '(byebug:post_mortem) '
    end
  end
end