]> git.lizzy.rs Git - uwu-lang.git/blobdiff - src/parse.h
Allow passing arguments to program, refactor directory structure
[uwu-lang.git] / src / parse.h
index 7aca6afb03c8581bef0f245c27b8655f8df43eeb..46f454282e8f8bceb30eef4cb8c71c67746eeb57 100644 (file)
@@ -3,11 +3,11 @@
 
 #include <stddef.h>
 #include <stdbool.h>
-#include "expression.h"
+#include "api/vm.h"
 
 typedef struct ParseExpression
 {
-       ExpressionType type;
+       UwUVMExpressionType type;
        union
        {
                int   int_value;