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 f2f8a36 commit 8e3595fCopy full SHA for 8e3595f
clippy_lints/src/macro_use.rs
@@ -25,7 +25,7 @@ impl ImportData {
25
pub fn new(name: String, span: Span, ecx: &EarlyContext<'_>) -> Self {
26
let path = ecx.sess.source_map().span_to_filename(span);
27
let path = ecx.sess.source_map().span_to_unmapped_path(span);
28
- println!("{:?} {:?}", name, path);
+ println!("NEW {:?} {:?}", name, path);
29
Self { name: name.to_string(), path: path.to_string(), }
30
}
31
@@ -56,7 +56,7 @@ pub struct MacroUseImport {
56
57
impl MacroUseImport {
58
fn import_path_mac(&self, name: &str) -> String {
59
- println!("{:?}", name);
+ println!("END {:?}", name);
60
String::default()
61
62
0 commit comments