diff options
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index a2a6f26f..38b200d0 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -22,7 +22,7 @@ int g_debug_indent_level = 0; bool debug_enabled()
{
- return true;
+ return g_cur_phase != "Parse";
}
::std::ostream& debug_output(int indent, const char* function)
{
@@ -116,6 +116,9 @@ int main(int argc, char *argv[]) // - This does name checking on types and free functions.
// - Resolves all identifiers/paths to references
CompilePhaseV("Resolve", [&]() {
+ Resolve_Use(crate);
+ //Resolve_Absolutise(crate);
+ //Resolve_UfcsPaths(crate);
ResolvePaths(crate);
});
|