aboutsummaryrefslogtreecommitdiff
path: root/include/parser/node_type.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/parser/node_type.h')
-rw-r--r--include/parser/node_type.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/include/parser/node_type.h b/include/parser/node_type.h
new file mode 100644
index 0000000..1766b19
--- /dev/null
+++ b/include/parser/node_type.h
@@ -0,0 +1,10 @@
+#ifndef NODE_TYPE_H
+#define NODE_TYPE_H
+
+enum class NodeType {
+ PROGRAM,
+ VARIABLE_DECLARATION,
+ ASSIGNMENT,
+};
+
+#endif