File tree Expand file tree Collapse file tree 1 file changed +0
-7
lines changed
lsp/src/Language/LSP/Server Expand file tree Collapse file tree 1 file changed +0
-7
lines changed Original file line number Diff line number Diff line change @@ -59,7 +59,6 @@ import Language.LSP.Protocol.Utils.SMethodMap qualified as SMethodMap
5959import Language.LSP.Server.Core
6060import Language.LSP.VFS as VFS
6161import Prettyprinter
62- import UnliftIO (race )
6362
6463data LspProcessingLog
6564 = VfsLog VfsLog
@@ -69,19 +68,13 @@ data LspProcessingLog
6968 | ProgressCancel ProgressToken
7069 | forall m . MessageDuringShutdown (SClientMethod m )
7170 | ShuttingDown
72- | ShuttingDownSenderTimeout ! Int
7371 | Exiting
7472
7573deriving instance Show LspProcessingLog
7674
7775instance Pretty LspProcessingLog where
7876 pretty (VfsLog l) = pretty l
7977 pretty (LspCore l) = pretty l
80- pretty (ShuttingDownSenderTimeout sec) =
81- vsep
82- [ " LSP: sender did not shut down within" <+> pretty sec <+> " seconds"
83- , " This likely indicates a broken pipe, and the server should exit now"
84- ]
8578 pretty (MessageProcessingError bs err) =
8679 vsep
8780 [ " LSP: incoming message parse error:"
You can’t perform that action at this time.
0 commit comments