Sha256: a1e9c184932d3acd334296ee6b2781dffcab4e86ec45258976d25bb8da797185
Contents?: true
Size: 603 Bytes
Versions: 7
Compression:
Stored size: 603 Bytes
Contents
module LanguageServer module Protocol module Interfaces # # Execute command options. # class ExecuteCommandOptions 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