Sha256: f615a4ae38d5bfff45c2e2ae0641d979f66bb2e6dec0adb4d996c20563a92f2a
Contents?: true
Size: 618 Bytes
Versions: 114
Compression:
Stored size: 618 Bytes
Contents
module LanguageServer module Protocol module Interface class DidChangeWorkspaceFoldersParams def initialize(event:) @attributes = {} @attributes[:event] = event @attributes.freeze end # # The actual workspace folder change event. # # @return [WorkspaceFoldersChangeEvent] def event attributes.fetch(:event) 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
114 entries across 114 versions & 12 rubygems