X-Git-Url: https://git.lukelau.me/?p=lsp-test.git;a=blobdiff_plain;f=src%2FLanguage%2FHaskell%2FLSP%2FTest%2FDecoding.hs;h=350b5251ad8b49133d3be5086852e3984f682a8c;hp=8805976c3dedcaef8be8c88fd06c904f1d6b0c36;hb=d755a0a431e88fe5c4b2a62743ee78c3a51a55e5;hpb=23b1dcf20f37869d29158ebc38402503894bcd80 diff --git a/src/Language/Haskell/LSP/Test/Decoding.hs b/src/Language/Haskell/LSP/Test/Decoding.hs index 8805976..350b525 100644 --- a/src/Language/Haskell/LSP/Test/Decoding.hs +++ b/src/Language/Haskell/LSP/Test/Decoding.hs @@ -116,6 +116,7 @@ matchResponseMsgType req = case req of TextDocumentDocumentLink -> RspDocumentLink . decoded DocumentLinkResolve -> RspDocumentLinkResolve . decoded TextDocumentWillSaveWaitUntil -> RspWillSaveWaitUntil . decoded + CustomClientMethod{} -> RspCustomServer . decoded x -> error . ((show x ++ " is not a request: ") ++) . show where decoded x = fromMaybe (error $ "Couldn't decode response for the request type: " ++ show req ++ "\n" ++ show x)