summaryrefslogtreecommitdiff
path: root/com.c
diff options
context:
space:
mode:
authorubq323 <ubq323@ubq323.website>2024-06-26 12:09:30 +0100
committerubq323 <ubq323@ubq323.website>2024-06-26 12:10:33 +0100
commita2525f2fc3f41c792065e61079e8e7126210529e (patch)
treed8e4b1d5c58c0b504a7962023a78a9d2b7a83e30 /com.c
parent7854c6d1c129f1979434514f4716d89752608288 (diff)
parse multiple expressions
Diffstat (limited to 'com.c')
-rw-r--r--com.c19
1 files changed, 13 insertions, 6 deletions
diff --git a/com.c b/com.c
index 66d3941..8102497 100644
--- a/com.c
+++ b/com.c
@@ -6,8 +6,8 @@
#include "mem.h"
#include "chunk.h"
#include "ast.h"
-#include "read.h"
#include "util.h"
+#include "prs.h"
#define BYTECODE(C) (C->ch->bc)
@@ -473,17 +473,24 @@ int main(int argc, char **argv) {
}
}
- AstNode an = read();
Compiler com = (Compiler){ 0 };
com.S = S;
com.ch = &ch;
- Compiler *C = &com;
- compile_node(C, an);
- compile_opcode(C, OP_PUTS);
- compile_opcode(C, OP_HALT);
+ AstNode an;
+ memset(&an, 0, sizeof an);
+ pcc_context_t *parser = pcc_create(NULL);
+ int rv;
+ do {
+ rv = pcc_parse(parser, &an);
+ compile_node(&com, an);
+ } while (rv != 0);
+ pcc_destroy(parser);
+
+ compile_opcode(&com, OP_PUTS);
+ compile_opcode(&com, OP_HALT);
Thread th = thread_new(S);
th.ch = &ch;