aboutsummaryrefslogtreecommitdiff
path: root/src/parser.c
diff options
context:
space:
mode:
authorc2024-01-27 22:58:23 -0500
committerc2024-01-27 22:58:23 -0500
commit87e0d4b3d23a7eb38f0e196eac333c318fef27ea (patch)
treece3b2cee903b7022e57a558f4725fed2b58e2813 /src/parser.c
parentf48c3a6cb320c897ca7477af17f8e5eb7447fd72 (diff)
Added string parsing, and tests for more blocks.
cool bug on window rn
Diffstat (limited to 'src/parser.c')
-rw-r--r--src/parser.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/parser.c b/src/parser.c
index 344ca89..2cf9b2c 100644
--- a/src/parser.c
+++ b/src/parser.c
@@ -15,6 +15,7 @@ void parser_destroy(parser_t* parser) {
if (parser) { free(parser); }
}
+/* TODO: What if the program begins with a ";"? */
int parser_nxt_token(parser_t* parser) {
/* Preserve original token list, to be cleaned up by lexer. */
parser->token = parser->token->nxt;
@@ -24,6 +25,7 @@ int parser_nxt_token(parser_t* parser) {
return parser->token ? 1 : 0;
}
+/* I don't know if these need to exist. Guess I'll wait and seeā€¦ */
int parser_match(parser_t* parser, token_type_t type) {
return parser->token->type == type;
}
@@ -49,9 +51,10 @@ tree_t* parser_parse_lstr(parser_t* parser) {
lstr = tree_init(TREE_TYPE_LSTR);
lstr->data.lstr.len = strlen(parser->token->val);
- /* Swap pointers to allow for future token destruction. */
+ /* Move token value to tree, to allow for future token destruction. */
lstr->data.lstr.val = parser->token->val;
parser->token->val = NULL;
+ parser_nxt_token(parser);
return lstr;
}
@@ -63,8 +66,8 @@ tree_t* parser_parse_expr(parser_t* parser) {
case TOKEN_TYPE_INT:
expr = parser_parse_lint(parser);
break;
- case TOKEN_TYPE_EXPR_END:
- parser_nxt_token(parser);
+ case TOKEN_TYPE_STR:
+ expr = parser_parse_lstr(parser);
break;
default:
log_war("%s: Unknown token type: %d", __func__, parser->token->type);