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 0dc186f commit fa6f78cCopy full SHA for fa6f78c
crates/ide/src/runnables.rs
@@ -74,7 +74,7 @@ impl Runnable {
74
}
75
76
77
- pub fn debugee(&self) -> bool {
+ pub fn can_debug(&self) -> bool {
78
matches!(
79
&self.kind,
80
RunnableKind::TestMod { .. }
crates/rust-analyzer/src/to_proto.rs
@@ -998,7 +998,7 @@ pub(crate) fn code_lens(
998
let annotation_range = range(&line_index, annotation.range);
999
1000
let title = run.title();
1001
- let can_debug = run.debugee();
+ let can_debug = run.can_debug();
1002
let r = runnable(snap, run)?;
1003
1004
let lens_config = snap.config.lens();
0 commit comments