comment out traces

This commit is contained in:
2024-04-13 15:17:30 -06:00
parent ab6fb3b991
commit d7ec1900a4

View File

@@ -233,7 +233,7 @@ class Story {
}
if (nextIdx < ast.length)
nextExpr = ast[nextIdx].expr;
trace(nextExpr);
// trace(nextExpr);
switch (nextExpr) {
case EGather(_, _, exp) | ETagged(EGather(_,_,exp), _):
nextExpr = exp;
@@ -484,7 +484,7 @@ class Story {
private function indexOf(target:String) {
var disposableFork = storyFork(target,true);
// TODO this probably causes substantial wasting of memory (could lead to garbage collector problems?)
trace('index of $target is ${disposableFork.exprIndex}/${ast.length}');
// trace('index of $target is ${disposableFork.exprIndex}/${ast.length}');
return disposableFork.exprIndex;
}