#include #include #include #include void lint(struct ctx *ctx) { // Lint parens int parens = 0; for (size_t i = 1; i < ctx->token_count; i++) { struct token *token = &ctx->tokens[i]; if (token->type == LPAREN) parens++; else if (token->type == RPAREN) parens--; } if (parens != 0) errln(ctx, "Invalid parens balance"); }