summaryrefslogtreecommitdiff
path: root/src/expand/mod.cpp
diff options
context:
space:
mode:
authorJohn Hodge <tpg@mutabah.net>2016-03-30 13:19:02 +0800
committerJohn Hodge <tpg@mutabah.net>2016-03-30 13:19:02 +0800
commit8f77e93357eeb45a31b14af91cd749a379da5179 (patch)
tree892e7362210557ef97cf3928fe84e75c32b76311 /src/expand/mod.cpp
parent210b1a17340e3ed3a8da9c29588f5a0db0d5e435 (diff)
downloadmrust-8f77e93357eeb45a31b14af91cd749a379da5179.tar.gz
Resolve - Working on new `use` resolution code
Diffstat (limited to 'src/expand/mod.cpp')
-rw-r--r--src/expand/mod.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/expand/mod.cpp b/src/expand/mod.cpp
index 1fdf56c1..d62a20db 100644
--- a/src/expand/mod.cpp
+++ b/src/expand/mod.cpp
@@ -482,7 +482,7 @@ void Expand_Mod(bool is_early, ::AST::Crate& crate, LList<const AST::Module*> mo
DEBUG("Items");
for( auto& i : mod.items() )
{
- DEBUG("- " << i.name << " :: " << i.data.attrs);
+ DEBUG("- " << i.name << " (" << ::AST::Item::tag_to_str(i.data.tag()) << ") :: " << i.data.attrs);
::AST::Path path = modpath + i.name;
auto attrs = mv$(i.data.attrs);