Comment out debugPrint

This commit is contained in:
2025-05-18 11:43:16 -04:00
parent e06b0d0cf6
commit a47d791ff8

View File

@@ -802,7 +802,7 @@ inline Status Parser3::keepGoing(Parser3 *self) {
if (self->len() == 0 && !self->complete) { if (self->len() == 0 && !self->complete) {
return S_AGAIN; return S_AGAIN;
} }
self->debugPrint(); // self->debugPrint();
MUSTTAIL return symbolTables.continuations[self->top()](self); MUSTTAIL return symbolTables.continuations[self->top()](self);
} }