X-Git-Url: http://git.lukelau.me/?p=lsp-test.git;a=blobdiff_plain;f=src%2FLanguage%2FHaskell%2FLSP%2FTest%2FMessages.hs;h=f8b182233f682ad853db4ff1b38aa398e617895e;hp=f41a77b4da77466dfba087ba88dd72954b176818;hb=40da0529edb687864acf2716dff310d38b0641c6;hpb=6c2e56d285d41bff19ebafadb2bef9e474ad74ae diff --git a/src/Language/Haskell/LSP/Test/Messages.hs b/src/Language/Haskell/LSP/Test/Messages.hs index f41a77b..f8b1822 100644 --- a/src/Language/Haskell/LSP/Test/Messages.hs +++ b/src/Language/Haskell/LSP/Test/Messages.hs @@ -60,6 +60,7 @@ handleServerMessage request response notification msg = case msg of (ReqShowMessage m) -> request m (ReqUnregisterCapability m) -> request m (ReqCustomServer m) -> request m + (ReqWorkDoneProgressCreate m) -> request m (RspInitialize m) -> response m (RspShutdown m) -> response m (RspHover m) -> response m @@ -92,9 +93,9 @@ handleServerMessage request response notification msg = case msg of (NotPublishDiagnostics m) -> notification m (NotLogMessage m) -> notification m (NotShowMessage m) -> notification m - (NotProgressStart m) -> notification m - (NotProgressReport m) -> notification m - (NotProgressDone m) -> notification m + (NotWorkDoneProgressBegin m) -> notification m + (NotWorkDoneProgressReport m) -> notification m + (NotWorkDoneProgressEnd m) -> notification m (NotTelemetry m) -> notification m (NotCancelRequestFromServer m) -> notification m (NotCustomServer m) -> notification m @@ -148,6 +149,6 @@ handleClientMessage request response notification msg = case msg of (NotDidSaveTextDocument m) -> notification m (NotDidChangeWatchedFiles m) -> notification m (NotDidChangeWorkspaceFolders m) -> notification m - (NotProgressCancel m) -> notification m + (NotWorkDoneProgressCancel m) -> notification m (ReqCustomClient m) -> request m (NotCustomClient m) -> notification m