LSP::Server
This is the class for a language server, it handles HTTP over IO.
Subclass this to create a server for a specific language:
class Server < LSP::Server method "text/didChange", DidChangeRequest end
Constructors
Instance methods
process(contents)
Sourceread
Reads a message from the input IO, and converts to a Message object, calls execute on it and send the result if it's a request message.
send_notification(method, params)
Sourcesend_request(id, method, params)
Sourcesend_response(id, result)
Source