diff options
author | John Hodge (sonata) <tpg@mutabah.net> | 2015-01-15 16:40:49 +0800 |
---|---|---|
committer | John Hodge (sonata) <tpg@mutabah.net> | 2015-01-15 16:40:49 +0800 |
commit | 7d04ce9d4c945cedf08ff2a7fa0af49ea4e6e1b0 (patch) | |
tree | 6c6f8e6dc638b3fa5cac02119c4a92646dbae9db /src/convert/resolve.cpp | |
parent | 3044ae80284fb958051ffd2926fcbff470ff8591 (diff) | |
download | mrust-7d04ce9d4c945cedf08ff2a7fa0af49ea4e6e1b0.tar.gz |
Working on parsing 'std' from a file (instead of hardcoding)
Diffstat (limited to 'src/convert/resolve.cpp')
-rw-r--r-- | src/convert/resolve.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/convert/resolve.cpp b/src/convert/resolve.cpp index bba534a3..1ff0daab 100644 --- a/src/convert/resolve.cpp +++ b/src/convert/resolve.cpp @@ -402,6 +402,8 @@ void ResolvePaths_HandleModule_Use(const AST::Crate& crate, const AST::Path& mod }
//throw ParseError::Todo("ResolvePaths_HandleModule - wildcard use on module");
break;
+ case AST::Path::ALIAS:
+ throw ParseError::Todo("ResolvePaths_HandleModule_Use - ALIAS");
case AST::Path::ENUM:
throw ParseError::Todo("ResolvePaths_HandleModule_Use - ENUM");
case AST::Path::ENUM_VAR:
|