summaryrefslogtreecommitdiff
path: root/src/hir/hir.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/hir/hir.hpp')
-rw-r--r--src/hir/hir.hpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/hir/hir.hpp b/src/hir/hir.hpp
index 72b8d7dc..a04fd1da 100644
--- a/src/hir/hir.hpp
+++ b/src/hir/hir.hpp
@@ -470,12 +470,17 @@ public:
/// Macros exported by this crate
::std::unordered_map< ::std::string, ::MacroRulesPtr > m_exported_macros;
+ /// Procedural macros presented
+ ::std::vector<::HIR::SimplePath> m_proc_macros;
/// Language items avaliable through this crate (includes ones from loaded externs)
::std::unordered_map< ::std::string, ::HIR::SimplePath> m_lang_items;
+ /// Referenced crates
::std::unordered_map< ::std::string, ExternCrate> m_ext_crates;
+ /// Referenced system libraries
::std::vector<ExternLibrary> m_ext_libs;
+ /// Extra paths for the linker
::std::vector<::std::string> m_link_paths;
/// Method called to populate runtime state after deserialisation