aboutsummaryrefslogtreecommitdiff
path: root/src/ast.c
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2024-10-18 22:35:27 +0300
committerKimplul <kimi.h.kuparinen@gmail.com>2024-10-23 18:25:23 +0300
commit7c5f098511b8f612a17f4ccdd8a4924c325d37e1 (patch)
tree4a97d802557bbffcadfcfd776c8e4afdb31d96aa /src/ast.c
parent18262dcbecd97591dd15ee9274a81abb8c2ba1c4 (diff)
downloadlyn-7c5f098511b8f612a17f4ccdd8a4924c325d37e1.tar.gz
lyn-7c5f098511b8f612a17f4ccdd8a4924c325d37e1.zip
initial parser+lexer
+ AST might still change, also not a *huge* fan of having to reverse all arrays but I guess it's unlikely to be a significant bottleneck
Diffstat (limited to 'src/ast.c')
-rw-r--r--src/ast.c53
1 files changed, 53 insertions, 0 deletions
diff --git a/src/ast.c b/src/ast.c
new file mode 100644
index 0000000..faeae6e
--- /dev/null
+++ b/src/ast.c
@@ -0,0 +1,53 @@
+#include <stdio.h>
+#include <lyn/ast.h>
+
+struct ast *reverse_ast_list(struct ast *root)
+{
+ struct ast *new_root = NULL;
+ while (root) {
+ struct ast *next = root->next;
+ root->next = new_root;
+ new_root = root;
+ root = next;
+ }
+
+ return new_root;
+}
+
+#define dump(depth, fmt, ...) \
+ do { \
+ printf("//%*s", 2 * depth, ""); \
+ printf(fmt,##__VA_ARGS__); \
+ } while (0)
+
+void ast_dump(int depth, struct ast *ast)
+{
+ switch (ast->kind) {
+ case LYN_ID: dump(depth, "%s\n", ast->s); return;
+ case LYN_STR: dump(depth, "\"%s\"\n", ast->s); return;
+ case LYN_INT: dump(depth, "%lld\n", ast->i); return;
+ case LYN_FLOAT: dump(depth, "%f\n", ast->d); return;
+ case LYN_CMD:
+ dump(depth, "CMD\n");
+ ast_dump_list(depth + 1, ast->args);
+ return;
+
+ case LYN_LIST:
+ dump(depth, "LIST\n");
+ ast_dump_list(depth + 1, ast->args);
+ return;
+
+ case LYN_APPLY:
+ dump(depth, "APPLY\n");
+ ast_dump_list(depth + 1, ast->args);
+ return;
+ }
+}
+
+void ast_dump_list(int depth, struct ast *ast)
+{
+ while (ast) {
+ ast_dump(depth, ast);
+ ast = ast->next;
+ }
+}