Refactor Parsing -> Compiling

Signed-off-by: Will Hawkins <hawkinsw@obs.cr>
This commit is contained in:
Will Hawkins
2026-03-02 08:25:29 -05:00
parent cfe78a9b29
commit 6dba17c97a
21 changed files with 550 additions and 489 deletions
+9 -7
View File
@@ -1,7 +1,9 @@
parser main_parser() {
state start {
bool where_to = true;
string where_from = where_to;
transition reject;
}
};
parser simple() {
state start {
bool x = true;
int y = 0;
y = 1;
transition accept;
}
};