diff options
author | John Hodge <tpg@ucc.asn.au> | 2016-06-04 23:44:25 +0800 |
---|---|---|
committer | John Hodge <tpg@ucc.asn.au> | 2016-06-04 23:44:25 +0800 |
commit | b745c5f88faf89af9a487b7cf0cfc362b73c0423 (patch) | |
tree | e2b99aeaa80dc08cd96382c9be94e9c2a880a50a /src/main.cpp | |
parent | 31bff06cbd7b208096958edb21c4a50e17b6e9f5 (diff) | |
download | mrust-b745c5f88faf89af9a487b7cf0cfc362b73c0423.tar.gz |
Resolve - Fix variable resolution and pattern binding
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.cpp b/src/main.cpp index f5dd63a3..90358661 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -25,9 +25,9 @@ int g_debug_indent_level = 0; bool debug_enabled()
{
- return true;
+ //return true;
//return g_cur_phase != "Parse";
- //return g_cur_phase != "Parse" && g_cur_phase != "Expand";
+ return g_cur_phase != "Parse" && g_cur_phase != "Expand";
//return g_cur_phase != "Parse" && g_cur_phase != "Expand" && g_cur_phase != "Resolve";
}
::std::ostream& debug_output(int indent, const char* function)
|