Sha256: 2f5488bb9846625093450aba48a896825e25f6d29a756a06539f3052761d74b7

Contents?: true

Size: 1.01 KB

Versions: 6770

Compression:

Stored size: 1.01 KB

Contents

# frozen_string_literal: true

require_relative "../../helpers/eval"

module Byebug
  #
  # Reopens the +var+ command to define the +const+ subcommand
  #
  class VarCommand < Command
    #
    # Shows constants
    #
    class ConstCommand < Command
      include Helpers::EvalHelper

      self.allow_in_post_mortem = true

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

      def self.description
        <<-DESCRIPTION
          v[ar] c[onstant]

          #{short_description}
        DESCRIPTION
      end

      def self.short_description
        "Shows constants of an object."
      end

      def execute
        obj = warning_eval(str_obj)
        return errmsg(pr("variable.errors.not_module", object: str_obj)) unless obj.is_a?(Module)

        constants = warning_eval("#{str_obj}.constants")
        puts prv(constants.sort.map { |c| [c, obj.const_get(c)] }, "constant")
      end

      private

      def str_obj
        @str_obj ||= @match[1] || "self.class"
      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/const.rb
passbase-1.0.0 vendor/bundle/ruby/2.7.0/gems/byebug-11.1.3/lib/byebug/commands/var/const.rb
files.com-1.0.1 vendor/bundle/ruby/2.5.0/gems/byebug-11.1.3/lib/byebug/commands/var/const.rb
byebug-11.1.3 lib/byebug/commands/var/const.rb
byebug-11.1.2 lib/byebug/commands/var/const.rb
talon_one-2.0.0 vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/commands/var/const.rb
argon-1.3.1 vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/commands/var/const.rb
symbolic_enum-1.1.5 vendor/bundle/ruby/2.7.0/gems/byebug-11.1.1/lib/byebug/commands/var/const.rb
byebug-11.1.1 lib/byebug/commands/var/const.rb
byebug-11.1.0 lib/byebug/commands/var/const.rb