class Byebug::CallstyleSetting

def help

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

def initialize

def initialize
  @value = :long
end

def to_s

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