blob: 5ff18646519a4bac9ff527223d9b2022edbe9e11 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#include <stddef.h>
#include <lint.h>
#include <log.h>
#include <tokenize.h>
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");
}
|