1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
|
module LanguageServer
module Protocol
module Interface
class RenameClientCapabilities
def initialize(dynamic_registration: nil, prepare_support: nil, prepare_support_default_behavior: nil, honors_change_annotations: nil)
@attributes = {}
@attributes[:dynamicRegistration] = dynamic_registration if dynamic_registration
@attributes[:prepareSupport] = prepare_support if prepare_support
@attributes[:prepareSupportDefaultBehavior] = prepare_support_default_behavior if prepare_support_default_behavior
@attributes[:honorsChangeAnnotations] = honors_change_annotations if honors_change_annotations
@attributes.freeze
end
#
# Whether rename supports dynamic registration.
#
# @return [boolean]
def dynamic_registration
attributes.fetch(:dynamicRegistration)
end
#
# Client supports testing for validity of rename operations
# before execution.
#
# @return [boolean]
def prepare_support
attributes.fetch(:prepareSupport)
end
#
# Client supports the default behavior result
# (`{ defaultBehavior: boolean }`).
#
# The value indicates the default behavior used by the
# client.
#
# @return [1]
def prepare_support_default_behavior
attributes.fetch(:prepareSupportDefaultBehavior)
end
#
# Whether the client honors the change annotations in
# text edits and resource operations returned via the
# rename request's workspace edit by for example presenting
# the workspace edit in the user interface and asking
# for confirmation.
#
# @return [boolean]
def honors_change_annotations
attributes.fetch(:honorsChangeAnnotations)
end
attr_reader :attributes
def to_hash
attributes
end
def to_json(*args)
to_hash.to_json(*args)
end
end
end
end
end
|