Sha256: a2f6eebfd6e6a551f0ca431a31a41931c1973e24d8faed4bfaf98467b942bf5b
Contents?: true
Size: 755 Bytes
Versions: 1
Compression:
Stored size: 755 Bytes
Contents
module LanguageServer module Protocol module Interface class NotificationMessage < Message def initialize(jsonrpc:, method:, params: nil) @attributes = {} @attributes[:method] = method @attributes[:params] = params if params @attributes.freeze end # # The method to be invoked. # # @return [string] def method attributes.fetch(:method) end # # The notification's params. # # @return [any] def params attributes.fetch(:params) end attr_reader :attributes def to_json(*args) attributes.to_json(*args) end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
language_server-protocol-0.4.0 | lib/language_server/protocol/interface/notification_message.rb |