lang: ast: implement parsing of match statements

This commit is contained in:
2024-12-04 22:22:25 +00:00
parent 0bb4a4284c
commit 7acf80f930
10 changed files with 396 additions and 13 deletions

View File

@@ -35,7 +35,6 @@ static struct token_parse_result parse_expr_begin(
static struct token_parse_result parse_dot(
struct ivy_parser *ctx, struct ivy_token *tok)
{
printf("unneeded dot\n");
return PARSE_RESULT(IVY_OK, 0);
}