Sha256: 9cf53747261c3440fd4dfa9db5cddd6c69f9ffe1b03aaba4f1488a145514195c
Contents?: true
Size: 678 Bytes
Versions: 6
Compression:
Stored size: 678 Bytes
Contents
module LanguageServer module Protocol module Interface # # Execute command registration options. # class ExecuteCommandRegistrationOptions def initialize(commands:) @attributes = {} @attributes[:commands] = commands @attributes.freeze end # # The commands to be executed on the server # # @return [string[]] def commands attributes.fetch(:commands) 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
6 entries across 6 versions & 1 rubygems