Sha256: ba5807b08dea79de22cb3eedd42465a832fbd3affb3b0818f137bd96db711dd2

Contents?: true

Size: 834 Bytes

Versions: 2

Compression:

Stored size: 834 Bytes

Contents

require 'byebug/helpers/toggle'

module Byebug
  #
  # Reopens the +enable+ command to define the +breakpoints+ subcommand
  #
  class EnableCommand < Command
    #
    # Enables all or specific breakpoints
    #
    class BreakpointsSubcommand < Command
      include Helpers::ToggleHelper

      def regexp
        /^\s* b(?:reakpoints)? (?:\s+ (.+))? \s*$/x
      end

      def execute
        enable_disable_breakpoints('enable', @match[1])
      end

      def short_description
        'Disable all or specific breakpoints'
      end

      def description
        <<-EOD
          en[able] b[reakpoints][ <ids>]

          #{short_description}

          Give breakpoint numbers (separated by spaces) as arguments or no
          argument at all if you want to enable every breakpoint.
        EOD
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 2 rubygems

Version Path
sc_core-0.0.7 test/dummy/vendor/bundle/ruby/2.2.0/gems/byebug-5.0.0/lib/byebug/commands/enable/breakpoints.rb
byebug-5.0.0 lib/byebug/commands/enable/breakpoints.rb