class LanguageServer::Protocol::Interface::Message

def initialize(jsonrpc:)

def initialize(jsonrpc:)
  @attributes = {}
  @attributes[:jsonrpc] = jsonrpc
  @attributes.freeze
end

def jsonrpc

Returns:
  • (string) -
def jsonrpc
  attributes.fetch(:jsonrpc)
end

def to_hash

def to_hash
  attributes
end

def to_json(*args)

def to_json(*args)
  to_hash.to_json(*args)
end