File Manager

Path: /opt/chef/embedded/lib/ruby/gems/2.7.0/gems/byebug-11.1.3/lib/byebug/settings/

Viewing File: callstyle.rb

# frozen_string_literal: true

require_relative "../setting"

module Byebug
  #
  # Setting to customize the verbosity level for stack frames.
  #
  class CallstyleSetting < Setting
    DEFAULT = "long"

    def banner
      "Set how you want method call parameters to be displayed"
    end

    def to_s
      "Frame display callstyle is '#{value}'"
    end
  end
end