aboutsummaryrefslogtreecommitdiff
path: root/src/lint.c
diff options
context:
space:
mode:
authorMarvin Borner2022-02-20 18:48:30 +0100
committerMarvin Borner2022-02-20 18:48:30 +0100
commitfa02225c5ae8b704408769c70bb47101042762b8 (patch)
tree2bbd0763fccacd0a35631d6ee9a2176ed836eef5 /src/lint.c
parent5cc450b6e8554f5d982f444b9026447971c94024 (diff)
Haskell ftw
Diffstat (limited to 'src/lint.c')
-rw-r--r--src/lint.c21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/lint.c b/src/lint.c
deleted file mode 100644
index 7c2e9da..0000000
--- a/src/lint.c
+++ /dev/null
@@ -1,21 +0,0 @@
-#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->location, "Invalid parens balance");
-}