Clean up some trace() calls

This commit is contained in:
2021-07-19 15:09:45 -06:00
parent 028bc319b7
commit 4850da5cab

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) {