Make lexeme and token logging more concise

This commit is contained in:
Juno Takano 2026-01-05 04:18:21 -03:00
commit 735b58866c
15 changed files with 229 additions and 20 deletions

View file

@ -19,10 +19,7 @@ pub fn parse(
state: &mut State,
tokens: &mut Vec<Token>,
) -> bool {
log!(
"Resolving open context: {:#?}",
state.clone().buffers.anchor
);
log!("Solving: {}", state.clone().buffers.anchor);
let buffer = &mut state.buffers.anchor;
let candidate = &mut buffer.candidate;