Sha256: c53d306f9689d094223d005746ffb14f473eeaae6f6a84e1456330c79aa3add6
Contents?: true
Size: 428 Bytes
Versions: 3
Compression:
Stored size: 428 Bytes
Contents
module LanguageServer module Protocol module Interface class CodeActionRegistrationOptions < CodeActionOptions def initialize(code_action_kinds: nil) @attributes = {} @attributes.freeze end attr_reader :attributes def to_hash attributes end def to_json(*args) to_hash.to_json(*args) end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems