# frozen_string_literal: true require "byebug/processors/command_processor" module Byebug # # Processes commands when there's not program running # class ControlProcessor < CommandProcessor # # Available commands # def commands super.select(&:allow_in_control) end # # Prompt shown before reading a command. # def prompt "(byebug:ctrl) " end end end