Sha256: e099b7d25af0ed134b0eddfb6e385cb794c7b36d0f31b8dc78ae610828bdf9ce
Contents?: true
Size: 628 Bytes
Versions: 7
Compression:
Stored size: 628 Bytes
Contents
module LanguageServer module Protocol module Interfaces # # 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_json(*args) attributes.to_json(*args) end end end end end
Version data entries
7 entries across 7 versions & 2 rubygems