summaryrefslogtreecommitdiff
path: root/src/include/syntax_tree.hpp
diff options
context:
space:
mode:
authorHombreLaser <buran@silosneeded.com>2024-06-22 16:45:04 -0600
committerHombreLaser <buran@silosneeded.com>2024-06-22 16:45:04 -0600
commit404826e78a56e15e20d3938aed80945295921745 (patch)
treed607769fccfc4e3c77a9465a9800004421c500cb /src/include/syntax_tree.hpp
parent10ecf4d95194a273cc6aab89c3a1bcf739a194cd (diff)
Add parser
Diffstat (limited to 'src/include/syntax_tree.hpp')
-rw-r--r--src/include/syntax_tree.hpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/include/syntax_tree.hpp b/src/include/syntax_tree.hpp
new file mode 100644
index 0000000..9edf23c
--- /dev/null
+++ b/src/include/syntax_tree.hpp
@@ -0,0 +1,12 @@
+#pragma once
+#include "tokenizer.hpp"
+
+class SyntaxTree {
+protected:
+ const SyntaxTree *left {};
+ const SyntaxTree *right {};
+public:
+ SyntaxTree(SyntaxTree *left = nullptr, SyntaxTree *right = nullptr);
+ virtual ~SyntaxTree();
+ virtual float eval() const = 0;
+};