diff options
author | John Hodge <tpg@mutabah.net> | 2016-09-27 15:58:17 +0800 |
---|---|---|
committer | John Hodge <tpg@mutabah.net> | 2016-09-27 15:58:17 +0800 |
commit | 7ecb789e0c19e636652866ba08328ba413afe302 (patch) | |
tree | 6c206108cf9029faa9b2354210d1048fdd1aabf0 /src/resolve/index.cpp | |
parent | 5fbfd267b54e243ebe2ad3820d75359d7ed95988 (diff) | |
download | mrust-7ecb789e0c19e636652866ba08328ba413afe302.tar.gz |
AST - Stub out extern and impl blocks as Item-s
Diffstat (limited to 'src/resolve/index.cpp')
-rw-r--r-- | src/resolve/index.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/resolve/index.cpp b/src/resolve/index.cpp index 4d66dd14..754b6eea 100644 --- a/src/resolve/index.cpp +++ b/src/resolve/index.cpp @@ -96,6 +96,14 @@ void Resolve_Index_Module_Base(const AST::Crate& crate, AST::Module& mod) ), (MacroInv, ), + // Unnamed + (ExternBlock, + ), + (Impl, + ), + (NegImpl, + ), + (Use, // Skip for now ), |