mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-30 05:45:12 +00:00
Remove dbg!
This commit is contained in:
parent
d560219d06
commit
67226ebc82
2 changed files with 0 additions and 5 deletions
|
@ -145,17 +145,13 @@ impl ExpansionInfo {
|
|||
(arg_file_id, def_file_id): (HirFileId, HirFileId),
|
||||
) -> Option<(HirFileId, TextRange)> {
|
||||
for (src, dest) in &self.arg_map {
|
||||
dbg!((src, *dest, "arg_map"));
|
||||
if src.is_subrange(&from) {
|
||||
dbg!((arg_file_id, *dest));
|
||||
return Some((arg_file_id, *dest));
|
||||
}
|
||||
}
|
||||
|
||||
for (src, dest) in &self.def_map {
|
||||
dbg!((src, *dest, "def_map"));
|
||||
if src.is_subrange(&from) {
|
||||
dbg!((arg_file_id, *dest));
|
||||
return Some((def_file_id, *dest));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue