Sha256: 07efdeb0650a457763ff252d29c15354ed487e898a80b150e35f7086a18adaa7
Contents?: true
Size: 558 Bytes
Versions: 7
Compression:
Stored size: 558 Bytes
Contents
module LanguageServer module Protocol module Interfaces class ApplyWorkspaceEditResponse def initialize(applied:) @attributes = {} @attributes[:applied] = applied @attributes.freeze end # # Indicates whether the edit was applied or not. # # @return [boolean] def applied attributes.fetch(:applied) 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