aboutsummaryrefslogtreecommitdiffstats
path: root/src/nodes.h
diff options
context:
space:
mode:
authorBad Diode <bd@badd10de.dev>2022-04-18 16:27:21 -0300
committerBad Diode <bd@badd10de.dev>2022-04-18 16:27:21 -0300
commit3da041f2e17fdeb69bf345aadf89c5fcc1814260 (patch)
treec1979ffee13f45f757712a61304a3edba89a80f5 /src/nodes.h
parentdcd3192e50d7b4ea333ecf57a7e8b325af145547 (diff)
downloadbdl-3da041f2e17fdeb69bf345aadf89c5fcc1814260.tar.gz
bdl-3da041f2e17fdeb69bf345aadf89c5fcc1814260.zip
Move semantic analysis to separate file
Diffstat (limited to 'src/nodes.h')
-rw-r--r--src/nodes.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/nodes.h b/src/nodes.h
index 11b30dd..af10573 100644
--- a/src/nodes.h
+++ b/src/nodes.h
@@ -21,7 +21,6 @@ typedef struct Node {
21 NodeType type; 21 NodeType type;
22 size_t line; 22 size_t line;
23 size_t col; 23 size_t col;
24 struct Scope *scope;
25 struct Type *expr_type; 24 struct Type *expr_type;
26 25
27 union { 26 union {