diff options
author | John Hodge <tpg@mutabah.net> | 2015-03-22 18:57:47 +0800 |
---|---|---|
committer | John Hodge <tpg@mutabah.net> | 2015-03-22 18:57:47 +0800 |
commit | d004d8293e289942a99a2137ce0a0455cf078b0d (patch) | |
tree | b94b8ac8525e8a7c1ec6b8b51bdaabf4424be380 /src/ast/path.cpp | |
parent | 5c61e0955197adb58fdf7911ccf7e05c13f2263d (diff) | |
download | mrust-d004d8293e289942a99a2137ce0a0455cf078b0d.tar.gz |
Wildcard lookups in convert resolve, use processing of anon modules
Diffstat (limited to 'src/ast/path.cpp')
-rw-r--r-- | src/ast/path.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ast/path.cpp b/src/ast/path.cpp index 8e73c095..7eab20dd 100644 --- a/src/ast/path.cpp +++ b/src/ast/path.cpp @@ -78,6 +78,7 @@ void Path::resolve(const Crate& root_crate) const bool is_last = (i+1 == m_nodes.size()); const bool is_sec_last = (i+2 == m_nodes.size()); const PathNode& node = m_nodes[i]; + DEBUG("[" << i << "/"<<m_nodes.size()<<"]: " << node); if( node.name()[0] == '#' ) { |