class LanguageServer::Protocol::Interface::ShowDocumentResult


The result of an show document request.

def initialize(success:)

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

def success

Returns:
  • (boolean) -
def success
  attributes.fetch(:success)
end

def to_hash

def to_hash
  attributes
end

def to_json(*args)

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