summaryrefslogtreecommitdiff
path: root/src/resolve/index.cpp
diff options
context:
space:
mode:
authorJohn Hodge <tpg@mutabah.net>2016-09-27 15:58:17 +0800
committerJohn Hodge <tpg@mutabah.net>2016-09-27 15:58:17 +0800
commit7ecb789e0c19e636652866ba08328ba413afe302 (patch)
tree6c206108cf9029faa9b2354210d1048fdd1aabf0 /src/resolve/index.cpp
parent5fbfd267b54e243ebe2ad3820d75359d7ed95988 (diff)
downloadmrust-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.cpp8
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
),