diff options
author | John Hodge <tpg@mutabah.net> | 2016-05-21 11:51:02 +0800 |
---|---|---|
committer | John Hodge <tpg@mutabah.net> | 2016-05-21 11:51:02 +0800 |
commit | 871c53c3fcfec69d3a3cf9ec19ef225bb8149201 (patch) | |
tree | 579b74c7df27ed48a1656a64ff40511ca9f83cb8 /src/resolve/index.cpp | |
parent | 6e8fa812d8ab6c148213eebc716f7433e6e6b557 (diff) | |
download | mrust-871c53c3fcfec69d3a3cf9ec19ef225bb8149201.tar.gz |
Expand - Add attributes to impl blocks
Diffstat (limited to 'src/resolve/index.cpp')
-rw-r--r-- | src/resolve/index.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/resolve/index.cpp b/src/resolve/index.cpp index 0155455d..a1892238 100644 --- a/src/resolve/index.cpp +++ b/src/resolve/index.cpp @@ -71,6 +71,7 @@ void Resolve_Index_Module_Base(AST::Module& mod) for( const auto& i : mod.items() ) { ::AST::Path p = mod.path() + i.name; + DEBUG("- p = " << p << " : " << ::AST::Item::tag_to_str(i.data.tag())); TU_MATCH(AST::Item, (i.data), (e), (None, |