squash Advent of Code log output

This commit is contained in:
2021-04-28 15:19:13 -06:00
parent 2acefb133d
commit ff06449fa9

View File

@@ -211,10 +211,10 @@ class EmbeddedScript {
// fields, otherwise DSL state will be lost when forking, which is unacceptable
var fork = new kiss.cloner.Cloner().clone(this);
fork.instructions[instructionPointer] = command;
trace(fork.breakPoints);
trace('running a fork from ' + Std.string(instructionPointer + 1));
// trace(fork.breakPoints);
// trace('running a fork from ' + Std.string(instructionPointer + 1));
fork.run();
trace("fork finished");
// trace("fork finished");
fork;
}
];