diff options
author | John Hodge <tpg@mutabah.net> | 2016-05-29 16:23:29 +0800 |
---|---|---|
committer | John Hodge <tpg@mutabah.net> | 2016-05-29 16:23:29 +0800 |
commit | d97f3089b257754741326bda377103d2c99f263e (patch) | |
tree | 4c23946577af4786f427c8da365bbd019885454d /src/main.cpp | |
parent | f6b5e16db50450be409330e6dddfb218c8b5afb7 (diff) | |
download | mrust-d97f3089b257754741326bda377103d2c99f263e.tar.gz |
HIR Typecheck - Start on expression type checking/inferrence
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index ffe61468..09d16dfe 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -173,7 +173,7 @@ int main(int argc, char *argv[]) });
// Check the rest of the expressions (including function bodies)
CompilePhaseV("Typecheck Expressions", [&]() {
- //Typecheck_Expressions(*hir_crate);
+ Typecheck_Expressions(*hir_crate);
});
if( params.last_stage == ProgramParams::STAGE_TYPECK ) {
|