aboutsummaryrefslogtreecommitdiff
path: root/src/parse.h
diff options
context:
space:
mode:
authorElias Fleckenstein <eliasfleckenstein@web.de>2021-12-30 18:31:53 +0100
committerElias Fleckenstein <eliasfleckenstein@web.de>2021-12-30 18:31:53 +0100
commitec14f2955222932bb68704cc4590ba1dbd165cd9 (patch)
tree7bc4e580170231af32305f65875bd3cb2d9d541c /src/parse.h
parent4c52777ca9e52edd0bff76168d886de9757ea457 (diff)
downloaduwu-lang-ec14f2955222932bb68704cc4590ba1dbd165cd9.tar.xz
Allow passing arguments to program, refactor directory structure
Diffstat (limited to 'src/parse.h')
-rw-r--r--src/parse.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/parse.h b/src/parse.h
index 7aca6af..46f4542 100644
--- a/src/parse.h
+++ b/src/parse.h
@@ -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;