Sha256: ece329703346a379df5e74a070a8911eb57978740cc935c50aef03e1886e8818

Contents?: true

Size: 763 Bytes

Versions: 6770

Compression:

Stored size: 763 Bytes

Contents

# frozen_string_literal: true

require_relative "../../helpers/var"

module Byebug
  #
  # Reopens the +var+ command to define the +all+ subcommand
  #
  class VarCommand < Command
    #
    # Shows global, instance and local variables
    #
    class AllCommand < Command
      include Helpers::VarHelper

      self.allow_in_post_mortem = true

      def self.regexp
        /^\s* a(?:ll)? \s*$/x
      end

      def self.description
        <<-DESCRIPTION
          v[ar] a[ll]

          #{short_description}
        DESCRIPTION
      end

      def self.short_description
        "Shows local, global and instance variables of self."
      end

      def execute
        var_global
        var_instance("self")
        var_local
      end
    end
  end
end

Version data entries

6,770 entries across 6,767 versions & 30 rubygems

Version Path
passbase-1.0.1 vendor/bundle/ruby/2.7.0/gems/byebug-11.1.3/lib/byebug/commands/var/all.rb
passbase-1.0.0 vendor/bundle/ruby/2.7.0/gems/byebug-11.1.3/lib/byebug/commands/var/all.rb
files.com-1.0.1 vendor/bundle/ruby/2.5.0/gems/byebug-11.1.3/lib/byebug/commands/var/all.rb
byebug-11.1.3 lib/byebug/commands/var/all.rb
byebug-11.1.2 lib/byebug/commands/var/all.rb
talon_one-2.0.0 vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/commands/var/all.rb
argon-1.3.1 vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/commands/var/all.rb
symbolic_enum-1.1.5 vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/commands/var/all.rb
byebug-11.1.1 lib/byebug/commands/var/all.rb
byebug-11.1.0 lib/byebug/commands/var/all.rb