Sha256: 4cfec80995705d6d59fb7053f66a2d4c6c248dd32676f7ef32250892a659b129
Contents?: true
Size: 1.25 KB
Versions: 106
Compression:
Stored size: 1.25 KB
Contents
module LanguageServer module Protocol module Interface # # Create file operation # class CreateFile def initialize(kind:, uri:, options: nil, annotation_id: nil) @attributes = {} @attributes[:kind] = kind @attributes[:uri] = uri @attributes[:options] = options if options @attributes[:annotationId] = annotation_id if annotation_id @attributes.freeze end # # A create # # @return ["create"] def kind attributes.fetch(:kind) end # # The resource to create. # # @return [string] def uri attributes.fetch(:uri) end # # Additional options # # @return [CreateFileOptions] def options attributes.fetch(:options) end # # An optional annotation identifier describing the operation. # # @return [string] def annotation_id attributes.fetch(:annotationId) 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
106 entries across 106 versions & 15 rubygems