fn renderToken(r: *Render, token_index: Ast.TokenIndex, space: Space) Error!void
fn renderToken(r: *Render, token_index: Ast.TokenIndex, space: Space) Error!void { const tree = r.tree; const ais = r.ais; const lexeme = tokenSliceForRender(tree, token_index); try ais.writeAll(lexeme); try renderSpace(r, token_index, lexeme.len, space); }