diff options
author | John Hodge <tpg@mutabah.net> | 2016-08-27 21:32:09 +0800 |
---|---|---|
committer | John Hodge <tpg@mutabah.net> | 2016-08-27 21:32:09 +0800 |
commit | 28697d7ef5f7cac8664cc248e6e219177c822eb8 (patch) | |
tree | b2adc5a41382e6114daa86c736c1f6928d2f0c3b /src/ast/path.hpp | |
parent | 924efe07fca8620a8ed9726e473e31b86cff9b2e (diff) | |
download | mrust-28697d7ef5f7cac8664cc248e6e219177c822eb8.tar.gz |
Resolve - Working on extern crate support
Diffstat (limited to 'src/ast/path.hpp')
-rw-r--r-- | src/ast/path.hpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/ast/path.hpp b/src/ast/path.hpp index 809486b0..dbb92cde 100644 --- a/src/ast/path.hpp +++ b/src/ast/path.hpp @@ -27,10 +27,14 @@ class Struct; class Trait; class Static; class Function; +class ExternCrate; TAGGED_UNION_EX(PathBinding, (), Unbound, ( (Unbound, struct { }), + (Crate, struct { + const ExternCrate* crate_; + }), (Module, struct { const Module* module_; }), |