diff options
Diffstat (limited to 'src/hir/from_ast.cpp')
-rw-r--r-- | src/hir/from_ast.cpp | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/hir/from_ast.cpp b/src/hir/from_ast.cpp index aabfc3ef..17bbb2c3 100644 --- a/src/hir/from_ast.cpp +++ b/src/hir/from_ast.cpp @@ -1,4 +1,9 @@ /* + * MRustC - Rust Compiler + * - By John Hodge (Mutabah/thePowersGang) + * + * hir/from_ast.cpp + * - Constructs the HIR module tree from the AST module tree */ #include "common.hpp" #include "hir.hpp" @@ -14,7 +19,8 @@ ::HIR::PathParams LowerHIR_PathParams(const Span& sp, const ::AST::PathParams& src_params, bool allow_assoc); ::HIR::TraitPath LowerHIR_TraitPath(const Span& sp, const ::AST::Path& path); -::HIR::SimplePath path_Sized = ::HIR::SimplePath("", {"marker", "Sized"}); +::HIR::SimplePath path_Sized; +::std::string g_core_crate; ::HIR::Crate* g_crate_ptr = nullptr; // -------------------------------------------------------------------- @@ -1259,6 +1265,7 @@ public: { ::HIR::Crate rv; g_crate_ptr = &rv; + g_core_crate = (crate.m_load_std == ::AST::Crate::LOAD_NONE ? "" : "core"); auto& macros = rv.m_exported_macros; // - Extract macros from root module |