Sha256: 0673bbe4560bbb30da305fb7ea8e569dd90072e19faa7834a15953a887b18d70

Contents?: true

Size: 886 Bytes

Versions: 23

Compression:

Stored size: 886 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 BreakpointsCommand < Command
      include Helpers::ToggleHelper

      self.allow_in_post_mortem = true

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

      def self.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

      def self.short_description
        'Disable all or specific breakpoints'
      end

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

Version data entries

23 entries across 22 versions & 2 rubygems

Version Path
tdiary-5.0.5 vendor/bundle/gems/byebug-9.0.6/lib/byebug/commands/enable/breakpoints.rb
tdiary-5.0.5 vendor/bundle/gems/tdiary-5.0.4/vendor/bundle/gems/byebug-9.0.6/lib/byebug/commands/enable/breakpoints.rb
tdiary-5.0.4 vendor/bundle/gems/byebug-9.0.6/lib/byebug/commands/enable/breakpoints.rb
byebug-9.0.6 lib/byebug/commands/enable/breakpoints.rb
byebug-9.0.5 lib/byebug/commands/enable/breakpoints.rb
byebug-9.0.4 lib/byebug/commands/enable/breakpoints.rb
byebug-9.0.3 lib/byebug/commands/enable/breakpoints.rb
byebug-9.0.2 lib/byebug/commands/enable/breakpoints.rb
byebug-9.0.1 lib/byebug/commands/enable/breakpoints.rb
byebug-9.0.0 lib/byebug/commands/enable/breakpoints.rb
byebug-8.2.5 lib/byebug/commands/enable/breakpoints.rb
byebug-8.2.4 lib/byebug/commands/enable/breakpoints.rb
byebug-8.2.3 lib/byebug/commands/enable/breakpoints.rb
byebug-8.2.2 lib/byebug/commands/enable/breakpoints.rb
byebug-8.2.1 lib/byebug/commands/enable/breakpoints.rb
byebug-8.2.0 lib/byebug/commands/enable/breakpoints.rb
byebug-8.1.0 lib/byebug/commands/enable/breakpoints.rb
byebug-8.0.1 lib/byebug/commands/enable/breakpoints.rb
byebug-8.0.0 lib/byebug/commands/enable/breakpoints.rb
byebug-7.0.0 lib/byebug/commands/enable/breakpoints.rb