diff options
author | John Hodge <tpg@ucc.asn.au> | 2017-09-20 22:33:34 +0800 |
---|---|---|
committer | John Hodge <tpg@ucc.asn.au> | 2017-09-20 22:33:34 +0800 |
commit | 991574f89128f8f6189e965c097566621816eb0b (patch) | |
tree | 6b6543ad776fe8cd0f81a9728a37af9cda4eaeef /src/hir | |
parent | 48c1c9a23f3ac0e48bdf230873ea8723a0e44480 (diff) | |
download | mrust-991574f89128f8f6189e965c097566621816eb0b.tar.gz |
(minor) Debug printing changes
Diffstat (limited to 'src/hir')
-rw-r--r-- | src/hir/from_ast.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/hir/from_ast.cpp b/src/hir/from_ast.cpp index 48aa7af4..b005f79b 100644 --- a/src/hir/from_ast.cpp +++ b/src/hir/from_ast.cpp @@ -1181,6 +1181,7 @@ void _add_mod_val_item(::HIR::Module& mod, ::std::string name, bool is_pub, ::H { const auto& sp = item.data.span; auto item_path = ::HIR::ItemPath(path, item.name.c_str()); + DEBUG(item_path << " " << item.data.tag_str()); TU_MATCH(::AST::Item, (item.data), (e), (None, ), |