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