Sha256: 91f167ec36b8d944fa1aa04cc38d4ddb3a9f120e47771e6d5c873b126bc271dc
Contents?: true
Size: 540 Bytes
Versions: 7
Compression:
Stored size: 540 Bytes
Contents
module LanguageServer module Protocol module Interfaces class DidChangeWatchedFilesParams def initialize(changes:) @attributes = {} @attributes[:changes] = changes @attributes.freeze end # # The actual file events. # # @return [FileEvent[]] def changes attributes.fetch(:changes) 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