summaryrefslogtreecommitdiff
path: root/appl/lib/sh9parser.b
diff options
context:
space:
mode:
authorKonstantin Kirik (snegovick) <snegovick@uprojects.org>2025-12-25 17:09:35 +0300
committerKonstantin Kirik (snegovick) <snegovick@uprojects.org>2025-12-25 17:09:35 +0300
commit55dba26bfd2c49bbd07e4da95179a53ce5c163a8 (patch)
tree62dfce9508679026461b9c21e281b9b0ba8841c0 /appl/lib/sh9parser.b
parent2630491c9870e71a78791a8144a340e4cd5f99ed (diff)
Add logger to control debug printing from single point
Diffstat (limited to 'appl/lib/sh9parser.b')
-rw-r--r--appl/lib/sh9parser.b2
1 files changed, 1 insertions, 1 deletions
diff --git a/appl/lib/sh9parser.b b/appl/lib/sh9parser.b
index 9f83354..75fe2e9 100644
--- a/appl/lib/sh9parser.b
+++ b/appl/lib/sh9parser.b
@@ -204,8 +204,8 @@ parse_toks(toks: array of ref TokNode, g: array of ref GrammarNode, debug_printi
lt := len toks;
if (debug_printing) {
sys->print("Loop %d: ", ctr);
+ print_toks_short(toks);
}
- print_toks_short(toks);
ctr ++;
changed = 0;
fast: for (i := 0; i < lt; i ++) {