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