Code cleanup

This commit is contained in:
Bruce Hill 2024-09-18 00:42:33 -04:00
parent 4e670c8bca
commit 8e3c871f27

View File

@ -32,10 +32,6 @@ typedef struct {
int64_t next_lambda_id;
} parse_ctx_t;
typedef ast_t* (parser_t)(parse_ctx_t*,const char*);
extern void builtin_fail(const char *fmt, ...);
#define SPACES_PER_INDENT 4
#define PARSER(name) ast_t *name(parse_ctx_t *ctx, const char *pos)