class Solargraph::LanguageServer::Message::MethodNotFound

Public Instance Methods

process() click to toggle source
# File lib/solargraph/language_server/message/method_not_found.rb, line 7
def process
  set_error(
    Solargraph::LanguageServer::ErrorCodes::METHOD_NOT_FOUND,
    "Method not found: #{request['method']}"
  )
end