From 0623164c1d1ec461570c7d3d330d7c90fb00cf6e Mon Sep 17 00:00:00 2001 From: Edwin Cheng Date: Tue, 26 Nov 2019 21:13:36 +0800 Subject: [PATCH] Remove dbg! --- crates/ra_hir/src/source_binder.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/crates/ra_hir/src/source_binder.rs b/crates/ra_hir/src/source_binder.rs index 287cea88087..144e144bbb5 100644 --- a/crates/ra_hir/src/source_binder.rs +++ b/crates/ra_hir/src/source_binder.rs @@ -448,8 +448,6 @@ pub fn expand( db.ast_id_map(macro_call.file_id).ast_id(macro_call.value), ); let macro_call_loc = MacroCallLoc { def, ast_id }; - let kind = to_macro_file_kind(macro_call.value); - dbg!(kind); Some(Expansion { macro_call_id: db.intern_macro(macro_call_loc), macro_file_kind: to_macro_file_kind(macro_call.value),