Clean up some trace() calls

This commit is contained in:
2021-07-19 15:09:45 -06:00
parent c5c7a0e0c7
commit 6ee2b92b62

View File

@@ -139,9 +139,14 @@ class Macros {
#end
var conditionHScript = parser.parseString(hscriptStr);
return if (Prelude.truthy(conditionInterp.execute(conditionHScript))) {
trace("using thenExp");
#if test
Prelude.print("using thenExp");
#end
thenExp;
} else {
#if test
Prelude.print("using elseExp");
#end
elseExp;
}
} catch (e) {