You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
let eitherFormatOrInit =
asum
[ Left
<$> satisfyLog
( \case
KnownTargets.LogGetSigmaTargetsResult {} -> pure ()
_ -> empty
)
, Right <$> responseForId STextDocumentFormatting rid
]
res <- skipManyTill anyMessage eitherFormatOrInit
...
How I understand this is we want a Recorder that sends some subset of logs to the client by converting them to JSON, sending them using a custom LSP message, then converting them back to the Log type so we can inspect them in client tests.
I'm not certain how exactly the mechanics of choosing log messages to send will work.
The text was updated successfully, but these errors were encountered:
#2558 (comment)
Which I think is related to #2558 (comment)
How I understand this is we want a
Recorder
that sends some subset of logs to the client by converting them to JSON, sending them using a custom LSP message, then converting them back to theLog
type so we can inspect them in client tests.I'm not certain how exactly the mechanics of choosing log messages to send will work.
The text was updated successfully, but these errors were encountered: