diff options
author | John Hodge <tpg@mutabah.net> | 2016-05-06 15:12:00 +0800 |
---|---|---|
committer | John Hodge <tpg@mutabah.net> | 2016-05-06 15:12:00 +0800 |
commit | 1ac071bb74b47a0904e080f1343b31142da9da90 (patch) | |
tree | 0fc3b75aba1187b4c45c79153de2f3cf853a0ff1 /src/main.cpp | |
parent | 3081e4762069a8ba401f77bee4951061b1e9589a (diff) | |
download | mrust-1ac071bb74b47a0904e080f1343b31142da9da90.tar.gz |
Resolve - Separate modules and types for slightly different lookup requirements
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp index 2030a663..74e5e7f1 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -129,6 +129,10 @@ int main(int argc, char *argv[]) CompilePhaseV("Temp output - Resolved", [&]() {
Dump_Rust( FMT(params.outfile << "_1_res.rs").c_str(), crate );
});
+
+ CompilePhaseV("HIR Lower", [&]() {
+ //hir_crate = LowerHIR_FromAST(mv$( crate ));
+ });
// Replace type aliases (`type`) into the actual type
CompilePhaseV("Resolve Type Aliases", [&]() {
|