We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b06cd17 commit 66859edCopy full SHA for 66859ed
crates/rust-analyzer/src/flycheck.rs
@@ -478,6 +478,7 @@ impl FlycheckActor {
478
Some(cmd)
479
}
480
481
+ #[track_caller]
482
fn send(&self, check_task: FlycheckMessage) {
483
self.sender.send(check_task).unwrap();
484
crates/rust-analyzer/src/global_state.rs
@@ -558,8 +558,9 @@ impl GlobalState {
558
self.req_queue.incoming.is_completed(&request.id)
559
560
561
562
fn send(&self, message: lsp_server::Message) {
- self.sender.send(message).unwrap()
563
+ self.sender.send(message).unwrap();
564
565
566
pub(crate) fn publish_diagnostics(
0 commit comments