Sha256: 136841f2e7f28b3a274b3e3e288358aac82f03fb43b1af20dd675e4d51f2a428

Contents?: true

Size: 370 Bytes

Versions: 14

Compression:

Stored size: 370 Bytes

Contents

# frozen_string_literal: true
require 'byebug/setting'

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

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

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

Version data entries

14 entries across 13 versions & 2 rubygems

Version Path
tdiary-5.0.5 vendor/bundle/gems/tdiary-5.0.4/vendor/bundle/gems/byebug-9.0.6/lib/byebug/settings/callstyle.rb
tdiary-5.0.5 vendor/bundle/gems/byebug-9.0.6/lib/byebug/settings/callstyle.rb
tdiary-5.0.4 vendor/bundle/gems/byebug-9.0.6/lib/byebug/settings/callstyle.rb
byebug-9.0.6 lib/byebug/settings/callstyle.rb
byebug-9.0.5 lib/byebug/settings/callstyle.rb
byebug-9.0.4 lib/byebug/settings/callstyle.rb
byebug-9.0.3 lib/byebug/settings/callstyle.rb
byebug-9.0.2 lib/byebug/settings/callstyle.rb
byebug-9.0.1 lib/byebug/settings/callstyle.rb
byebug-9.0.0 lib/byebug/settings/callstyle.rb
byebug-8.2.5 lib/byebug/settings/callstyle.rb
byebug-8.2.4 lib/byebug/settings/callstyle.rb
byebug-8.2.3 lib/byebug/settings/callstyle.rb
byebug-8.2.2 lib/byebug/settings/callstyle.rb